Technologov added the comment:
Yes, this feature would be very important for me too...
Anybody knows, _when_ it will be integrated into Python ?
If this bugzilla supports email notifications, Please add me as "CC" for
this bug.
-Technologov
--
nosy: +T
New submission from Technologov:
hi !
Currently "optparse" module lacks "bool" data type parsing. It would be
nice to add this feature.
-Technologov, 16.02.2008.
--
components: Extension Modules
messages: 62469
nosy: Technologov
severity: normal
status: open
tit
New submission from Technologov:
"codecs" module on Windows writes incorrect end-of-line, making it
impossible to write Unicode files.
See below, how-to reproduce bug (Python 2.5.1 on Windows XP)
===
#buggy unicode supp
Technologov added the comment:
OK: try
filewr.write("abc"+"\n"+"abc")
The file will be generated with 7 bytes in it (must be 8, because
Windows has two-byte line-end).
Without using "codecs" modules, everything works fine, and the file will
have 8-bytes