Skip to content

Commit

Permalink
Update README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
cifkao authored Apr 5, 2021
1 parent dcc744e commit 0ef6ae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Functionalities that do not exist, but could be added in the future:
Limitations
-----------

* Like Pdb, NoPdb only works with pure-Python functions. Calls to built-ins and C extensions cannot be captured. This also applies to ML frameworks that compile models into static graphs; for NoPdb to work, this feature needs to be disabled, e.g. in TensorFlow, eager execution needs to be used.
* Like Pdb, NoPdb only works with pure-Python functions. Calls to built-ins and C extensions cannot be captured. This also applies to ML frameworks that compile models into static graphs; for NoPdb to work, this feature needs to be disabled, e.g. with :code:`tf.config.run_functions_eagerly(True)` in TensorFlow and with the :code:`jax.disable_jit()` context manager in JAX.
* Local variable assignment in :code:`Breakpoint.exec()` is only supported under CPython and PyPy.

.. |pypi-package| image:: https://badge.fury.io/py/nopdb.svg?
Expand Down

0 comments on commit 0ef6ae7

Please sign in to comment.