[issue15216] Support setting the encoding on a text stream after creation

2016-02-22 Thread Andrei Dorian Duma
Changes by Andrei Dorian Duma <andrei.duma.dor...@gmail.com>: -- nosy: -andrei.duma ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue19475] Add timespec optional flag to datetime isoformat() to choose the precision

2016-02-22 Thread Andrei Dorian Duma
Changes by Andrei Dorian Duma <andrei.duma.dor...@gmail.com>: -- nosy: -andrei.duma ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue15216] Support setting the encoding on a text stream after creation

2013-11-17 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: I have to postpone this for a few weeks. Sorry if I stayed in anyone's way. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15216

[issue19515] Share duplicated _Py_IDENTIFIER identifiers in C code

2013-11-12 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: Removed _Py_IDENTIFIERs duplicated in the same file, except: _Py_IDENTIFIER(replace): Modules/zipimport.c:563 which was enclosed in some #ifdefs. -- keywords: +patch Added file: http://bugs.python.org/file32587

[issue19514] Merge duplicated _Py_IDENTIFIER identifiers in C code

2013-11-07 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: I'll provide a patch later tonight. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19514 ___ ___ Python

[issue19514] Merge duplicated _Py_IDENTIFIER identifiers in C code

2013-11-07 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: The patch I promised above. -- Added file: http://bugs.python.org/file32532/merge_py_identifiers.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19514

[issue19514] Merge duplicated _Py_IDENTIFIER identifiers in C code

2013-11-07 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: I added a new patch with sorted _Py_IDENTIFIERs. Regarding all identifiers at the top, I guess it might be more stylish, but it might affect performance. I'm not sure, though. -- Added file: http://bugs.python.org/file32533

[issue19515] Share duplicated _Py_IDENTIFIER identifiers in C code

2013-11-07 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: @Andrei: Are you interested to work on a patch to remove identifiers duplicated in the same file? Yes, I will provide a patch in a day or two. -- ___ Python tracker rep...@bugs.python.org http

[issue15216] Support setting the encoding on a text stream after creation

2013-11-06 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: I am interested in working on this, but I might need guidance at times. Is that acceptable? If yes, I'm willing to start as soon as possible. -- nosy: +andrei.duma ___ Python tracker rep...@bugs.python.org http

[issue19514] Merge duplicated _Py_IDENTIFIER identifiers in C code

2013-11-06 Thread Andrei Dorian Duma
Changes by Andrei Dorian Duma andrei.duma.dor...@gmail.com: -- nosy: +andrei.duma ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19514

[issue19475] Add microsecond flag to datetime isoformat()

2013-11-05 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: I would like to implement this feature. I already wrote the Python part. Is there anything else to decide? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19475

[issue17762] platform.linux_distribution() should honor /etc/os-release

2013-11-03 Thread Andrei Dorian Duma
Changes by Andrei Dorian Duma andrei.duma.dor...@gmail.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17762 ___ ___ Python

[issue19456] ntpath doesn't join paths correctly when a drive is present

2013-11-03 Thread Andrei Dorian Duma
Changes by Andrei Dorian Duma andrei.duma.dor...@gmail.com: -- nosy: +andrei.duma ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19456

[issue19456] ntpath doesn't join paths correctly when a drive is present

2013-11-03 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: I'm willing to fix this. ntpath.join behaves weird in other situations too: ntpath.join('C:/a/b', 'D:x/y') 'C:/a/b\\D:x/y' In fact, I don't know what the above should return. -- ___ Python tracker rep

[issue19456] ntpath doesn't join paths correctly when a drive is present

2013-11-03 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: Added a possible fix for ntpath.join. Didn't touch isabs yet. -- keywords: +patch Added file: http://bugs.python.org/file32486/fix_ntpath_join.patch ___ Python tracker rep...@bugs.python.org http

[issue19475] Add microsecond flag to datetime isoformat()

2013-11-03 Thread Andrei Dorian Duma
Changes by Andrei Dorian Duma andrei.duma.dor...@gmail.com: -- nosy: +andrei.duma ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19475

[issue17762] platform.linux_distribution() should honor /etc/os-release

2013-11-02 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: New patch. Added tests and fixed uncaught OSError. -- Added file: http://bugs.python.org/file32467/add_os_release_support_2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17762

[issue17762] platform.linux_distribution() should honor /etc/os-release

2013-10-28 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: Yes, I will provide a patch including tests soon. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17762

[issue17762] platform.linux_distribution() should honor /etc/os-release

2013-10-24 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: I added a patch (my first patch!). platform.linux_distribution() now first looks in /etc/os-release. If this file is not found, checking continues as before. -- keywords: +patch Added file: http://bugs.python.org/file32330

[issue18959] Create a Superseded modules section in standard library ToC

2013-10-24 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: The patch adds a 'Deprecated Modules' heading in the library's ToC and moves 'imp' 'optparse' to the new entry. -- keywords: +patch nosy: +andrei.duma Added file: http://bugs.python.org/file32331/doc_add_a_deprecated_modules_heading.patch

[issue18959] Create a Superseded modules section in standard library ToC

2013-10-24 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: I changed 'Deprecated Modules' into 'Superseded Modules', as indicated by the issue title. -- Added file: http://bugs.python.org/file32332/doc_add_a_deprecated_modules_heading2.patch ___ Python tracker rep

[issue17762] platform.linux_distribution() should honor /etc/os-release

2013-10-23 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: I'm working on a patch. Hopefully, it will be ready in a day or two. -- nosy: +AndreiDuma ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17762