From a9d884a5797764c2212992eb3a59003f0c7d74a4 Mon Sep 17 00:00:00 2001 From: Ram Rachum Date: Fri, 3 May 2019 19:00:14 +0300 Subject: [PATCH] Fix docs some more --- README.md | 2 +- pysnooper/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85f176c..5a06d0d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pysnooper/__init__.py b/pysnooper/__init__.py index 4944847..26e76f8 100644 --- a/pysnooper/__init__.py +++ b/pysnooper/__init__.py @@ -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