This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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:59jordipfsetrecipients: + jordipf, vinay.sajip
2012-08-10 16:08:59jordipfsetmessageid: <1344614939.56.0.123330324369.issue15616@psf.upfronthosting.co.za>
2012-08-10 16:08:58jordipflinkissue15616 messages
2012-08-10 16:08:58jordipfcreate