[issue14428] Implementation of the PEP 418

2012-04-29 Thread STINNER Victor
STINNER Victor victor.stin...@gmail.com added the comment: You mean that process_time() doesn't return seconds? Yes, dt is not a number of seconds in the following example: t1=time.process_time(); (...); t2=time.process_time(); dt=t2-t1 I see two options: either increase the total running

[issue14687] Optimize str%tuple for the PEP 393

2012-04-29 Thread STINNER Victor
STINNER Victor victor.stin...@gmail.com added the comment: Updated patch: - use also PyUnicode_Kind for kind and fmtkind - fix compiler warnings - initialize data outside the loop - avoid duplicate PyUnicode_READ() where it is possible - minor code cleanup -- Added file:

[issue14687] Optimize str%tuple for the PEP 393

2012-04-29 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 42fbb4f9b540 by Victor Stinner in branch 'default': Issue #14687: Cleanup PyUnicode_Format() http://hg.python.org/cpython/rev/42fbb4f9b540 New changeset 08b54c635586 by Victor Stinner in branch 'default': Issue

[issue14433] Python 3 interpreter crash on windows when stdin closed in Python shell

2012-04-29 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 2de5e9715fe9 by Martin v. Löwis in branch '3.2': Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed. http://hg.python.org/cpython/rev/2de5e9715fe9 New changeset 2c27093fd11f by Martin v.

[issue14693] hashlib fallback modules should be built even if openssl *is* available at build time

2012-04-29 Thread Israel Fruchter
Israel Fruchter israel.fruch...@gmail.com added the comment: I think (2) is very important, and I agree Gregory about the distro responsibility for size. further more, if everything is define using the standard Modules/Setup, or Modules/Setup.local during compile/build time, why having a

[issue14693] hashlib fallback modules should be built even if openssl *is* available at build time

2012-04-29 Thread Israel Fruchter
Changes by Israel Fruchter israel.fruch...@gmail.com: -- versions: +Python 2.6, Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14693 ___

[issue14433] Python 3 interpreter crash on windows when stdin closed in Python shell

2012-04-29 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Out of the original report, ISTM that: a) the exit of the interpreter on closing stdin is considered correct behavior, and b) the crash on Windows is now fixed for 3.2, and 3.3 Hence I'm closing this issue as fixed. -- resolution:

<    1   2