[issue7380] uuid.UUID.bytes gives a bytearray() instead of bytes

2009-12-19 Thread Georg Brandl
Georg Brandl added the comment: Thanks, applied in r76895. -- resolution: -> accepted status: open -> closed ___ Python tracker ___ _

[issue7380] uuid.UUID.bytes gives a bytearray() instead of bytes

2009-12-11 Thread flox
Changes by flox : -- versions: -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue7380] uuid.UUID.bytes gives a bytearray() instead of bytes

2009-12-01 Thread flox
Changes by flox : Removed file: http://bugs.python.org/file15388/issue7380.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue7380] uuid.UUID.bytes gives a bytearray() instead of bytes

2009-12-01 Thread flox
Changes by flox : Added file: http://bugs.python.org/file15426/issue7380_py3k.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue7380] uuid.UUID.bytes gives a bytearray() instead of bytes

2009-11-23 Thread flox
Changes by flox : Removed file: http://bugs.python.org/file15385/issue7380_uuid.diff ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue7380] uuid.UUID.bytes gives a bytearray() instead of bytes

2009-11-23 Thread flox
flox added the comment: Patch with documentation included. (branches/py3k) -- assignee: -> georg.brandl components: +Documentation nosy: +georg.brandl Added file: http://bugs.python.org/file15388/issue7380.diff ___ Python tracker

[issue7380] uuid.UUID.bytes gives a bytearray() instead of bytes

2009-11-23 Thread flox
flox added the comment: Attached patch gives coherence: * both UUID.bytes and UUID.bytes_le return a "bytes" object * the random tests are explicitly skipped Then the documentation needs fixing, too. -- keywords: +patch Added file: http://bugs.python.org/file15385/issue7380_uuid.diff

[issue7380] uuid.UUID.bytes gives a bytearray() instead of bytes

2009-11-23 Thread flox
New submission from flox : I've tried some experiments with module uuid, and I meet some inconsistencies between the documentation, the docstring and the real behavior of the module. An interactive session is worth a thousand words: >>> import uuid >>> uuid.UUID(bytes='\x12\x34\x56\x78'*4) Trac