Message167886
| Author |
jordipf |
| Recipients |
jordipf, vinay.sajip |
| Date |
2012年08月10日.16:08:58 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1344614939.56.0.123330324369.issue15616@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
This is the output of your script when run in python 2.6 and the exact same PyYaml version:
C:\>test.py
RotatingFileHandler using code: <type 'instance'>
{'backupCount': 3,
'baseFilename': 'C:\\test.log',
'encoding': None,
'filters': [],
'formatter': None,
'level': 0,
'lock': <_RLock(None, 0)>,
'maxBytes': 262144,
'mode': 'a',
'stream': <open file 'C:\test.log', mode 'a' at 0x00C25BB0>}
RotatingFileHandler using YAML: <type 'instance'>
{'backupCount': 3,
'baseFilename': 'C:\\test.log',
'encoding': None,
'filters': [],
'formatter': None,
'level': 0,
'lock': <_RLock(None, 0)>,
'maxBytes': 262144,
'mode': 'a',
'stream': <open file 'C:\test.log', mode 'a' at 0x00C25200>}
FileHandler using code: <type 'instance'>
{'baseFilename': 'C:\\test.log',
'encoding': None,
'filters': [],
'formatter': None,
'level': 0,
'lock': <_RLock(None, 0)>,
'mode': 'a',
'stream': <open file 'C:\test.log', mode 'a' at 0x00C25B10>}
FileHandler using YAML: <type 'instance'>
{'baseFilename': 'C:\\test.log',
'encoding': None,
'filters': [],
'formatter': None,
'level': 0,
'lock': <_RLock(None, 0)>,
'mode': 'a',
'stream': <open file 'C:\test.log', mode 'a' at 0x00C252A0>} |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2012年08月10日 16:08:59 | jordipf | set | recipients:
+ jordipf, vinay.sajip |
| 2012年08月10日 16:08:59 | jordipf | set | messageid: <1344614939.56.0.123330324369.issue15616@psf.upfronthosting.co.za> |
| 2012年08月10日 16:08:58 | jordipf | link | issue15616 messages |
| 2012年08月10日 16:08:58 | jordipf | create |
|