[issue7676] IDLE shell shouldn't use TABs

2012-01-16 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I closed #8285 as it merely reported a consequence of using tabs. The Command Prompt window used for interactive Python on Windows only uses fixed-pitch fonts. Idle (tk) allows any font. I happen to use Lucida Sans Unicode (variable pitch)

[issue13703] Hash collision security issue

2012-01-16 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Patch version 7: - Make PyOS_URandom() private (renamed to _PyOS_URandom) - os.urandom() releases the GIL for I/O operation for its implementation reading /dev/urandom - move _Py_unicode_hash_secret_t documentation into

[issue13703] Hash collision security issue

2012-01-16 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: Added file: http://bugs.python.org/file24254/random-fix_tests.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13703 ___

[issue8052] subprocess close_fds behavior should only close open fds

2012-01-16 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: attaching a patch that implements this safely. -- keywords: +patch Added file: http://bugs.python.org/file24255/subprocess-close-open-fds-gps01.diff ___ Python tracker rep...@bugs.python.org

[issue8052] subprocess close_fds behavior should only close open fds

2012-01-16 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: attaching a better formatted one for review. -- Added file: http://bugs.python.org/file24256/subprocess-close-open-fds-gps02.diff ___ Python tracker rep...@bugs.python.org

[issue13703] Hash collision security issue

2012-01-16 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Some tests are still failing with my 2 patches: - test_dis - test_inspect - test_json - test_packaging - test_ttk_textonly - test_urllib -- ___ Python tracker rep...@bugs.python.org

[issue6559] add pass_fds paramter to subprocess.Popen()

2012-01-16 Thread Ferringb
Ferringb ferri...@gmail.com added the comment: Just noticed this patch... aside from liking the intention, the api for this is going to grow tiresome quick since it expects the FDs to already be in place; is there any reasons a mapping wasn't used here, specifically of (src_fd|src_fileobj) -

[issue6559] add pass_fds paramter to subprocess.Popen()

2012-01-16 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: Wasn't thought about. I have seen something similar to that done in another c++ subprocess implementation since. If you have suggestions for a more useful API, feel free to propose them in a new issue. --

[issue964437] idle help is modal

2012-01-16 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I agree that modal is a nuisance. Another problem with the help text window is that, on my system, it opens too narrow -- about 2/3rds the width of a shell or edit window. So many line are wrapped. Is this easy to fix and include with this

[issue6698] IDLE no longer opens only an edit window when configured to do so

2012-01-16 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: When I click r71126 it is mapped to bc084a97318b for #1529142 KBK msg85379 says The -e option now only opens an editor window, I think I agree with Tal's suggestion as long as thing still work ok on Mac. It is trivial to open a new empty

[issue13803] Under Solaris, distutils doesn't include bitness in the directory name

2012-01-16 Thread Jesús Cea Avión
New submission from Jesús Cea Avión j...@jcea.es: When compiling modules under Solaris, distutils generates directories like build/lib.solaris-2.10-i86pc-3.2. The i86pc part is the same both in 32 and 64 bits. So when building 32 and 64 bit C code, the binaries are mixed and the best result

[issue10278] add time.wallclock() method

2012-01-16 Thread akira
Changes by akira 4kir4...@gmail.com: -- nosy: +akira ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10278 ___ ___ Python-bugs-list mailing list

[issue13794] Copyright Year - Change it to 2012 please

2012-01-16 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 8f3a3247972b by Ezio Melotti in branch 'default': #13794: Update copyright year to 2012 in the devguide. http://hg.python.org/devguide/rev/8f3a3247972b -- nosy: +python-dev

[issue13794] Copyright Year - Change it to 2012 please

2012-01-16 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: I updated the tracker instances in http://svn.python.org/view?view=revisionrevision=88930 and the devguide. docs.python.org is already ok, but www.python.org still needs to be updated. -- ___

Re: [issue13792] The os.execl call doesn't give programs exit code

2012-01-16 Thread Amaury Forgeot d'Arc
Le 16 janv. 2012 00:09, Kay Hayen rep...@bugs.python.org a écrit : I am the author of the Python compiler Nuitka. It has the ability to immediately execute the created executable file. For that I am using os.execl to immediately replace the compiler and run the freshly created binary instead.

<    1   2