mirror of
https://github.com/cool-RR/PySnooper.git
synced 2026-07-18 00:45:19 +00:00
New release
This commit is contained in:
parent
20e746ac92
commit
5111a534d4
3 changed files with 5 additions and 1 deletions
2
AUTHORS
2
AUTHORS
|
|
@ -10,3 +10,5 @@ Loukas Leontopoulos
|
|||
Shlomi Fish
|
||||
Alex Hall
|
||||
pohmelie
|
||||
Nikita Melentev
|
||||
Mike Bayer
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue