New release

This commit is contained in:
Ram Rachum 2019-05-03 18:25:15 +03:00
parent 20e746ac92
commit 5111a534d4
3 changed files with 5 additions and 1 deletions

View file

@ -10,3 +10,5 @@ Loukas Leontopoulos
Shlomi Fish
Alex Hall
pohmelie
Nikita Melentev
Mike Bayer

View file

@ -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

View file

@ -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