mirror of
https://github.com/cool-RR/PySnooper.git
synced 2026-01-23 02:14:04 +00:00
Fix docs some more
This commit is contained in:
parent
600dedcc1a
commit
a9d884a579
2 changed files with 2 additions and 2 deletions
|
|
@ -114,7 +114,7 @@ $ pip install pysnooper
|
|||
```python
|
||||
import pysnooper
|
||||
|
||||
@pysnooper.snoop(variables=(
|
||||
@pysnooper.snoop(watch=(
|
||||
pysnooper.Attrs('x'), # attributes
|
||||
pysnooper.Keys('y'), # mapping (e.g. dict) items
|
||||
pysnooper.Indices('z'), # sequence (e.g. list/tuple) items
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import collections
|
|||
__VersionInfo = collections.namedtuple('VersionInfo',
|
||||
('major', 'minor', 'micro'))
|
||||
|
||||
__version__ = '0.0.28'
|
||||
__version__ = '0.0.29'
|
||||
__version_info__ = __VersionInfo(*(map(int, __version__.split('.'))))
|
||||
|
||||
del collections, __VersionInfo # Avoid polluting the namespace
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue