diff --git a/AUTHORS b/AUTHORS index c728157..1af2958 100644 --- a/AUTHORS +++ b/AUTHORS @@ -10,3 +10,5 @@ Loukas Leontopoulos Shlomi Fish Alex Hall pohmelie +Nikita Melentev +Mike Bayer diff --git a/README.md b/README.md index f3533d5..f6666ab 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,8 @@ If stderr is not easily accessible for you, you can redirect the output to a fil @pysnooper.snoop('/my/log/file.log') ``` +You can also pass a stream or a callable instead, and they'll be used. + See values of some variables that aren't local variables: ```python diff --git a/pysnooper/__init__.py b/pysnooper/__init__.py index bf8590a..ff2aa4c 100644 --- a/pysnooper/__init__.py +++ b/pysnooper/__init__.py @@ -7,7 +7,7 @@ import collections __VersionInfo = collections.namedtuple('VersionInfo', ('major', 'minor', 'micro')) -__version__ = '0.0.25' +__version__ = '0.0.26' __version_info__ = __VersionInfo(*(map(int, __version__.split('.')))) del collections, __VersionInfo # Avoid polluting the namespace