From 5111a534d4a6617aa0a9346fd1b6ed81964c6c49 Mon Sep 17 00:00:00 2001 From: Ram Rachum Date: Fri, 3 May 2019 18:25:15 +0300 Subject: [PATCH] New release --- AUTHORS | 2 ++ README.md | 2 ++ pysnooper/__init__.py | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) 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