[issue6800] os.exec* raises OSError: [Errno 45] Operation not supported in a multithreaded application

2009-08-29 Thread Gregory P. Smith
Changes by Gregory P. Smith g...@krypto.org: -- priority: - low ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6800 ___ ___ Python-bugs-list

[issue6800] os.exec* raises OSError: [Errno 45] Operation not supported in a multithreaded application

2009-08-29 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: There is no OS level API to kill threads. Python does not kill threads. When you exec, your entire process should be replaced by the OS, threads shouldn't matter they should simply disappear just as the rest of your process state does. This

[issue3143] Make the left sidebar in the doc collapsible

2009-08-29 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Here's a new version. Now it works with all the major browsers and it's more usable. I tested it on the following browsers, and I didn't notice any problem/bug: Firefox 2.0/3.0/3.5; Internet Explorer 6/7/8; Opera 9.64; Chrome 2.0; Konqueror

[issue3143] Make the left sidebar in the doc collapsible

2009-08-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: Removed file: http://bugs.python.org/file14794/sidebar.zip ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3143 ___

[issue3143] Make the left sidebar in the doc collapsible

2009-08-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: Added file: http://bugs.python.org/file14800/sidebar.zip ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3143 ___

[issue2057] difflib: add patch capability

2009-08-29 Thread Alexander Stanley
Changes by Alexander Stanley l...@swixel.net: -- nosy: +swixel ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2057 ___ ___ Python-bugs-list mailing

[issue6750] threading issue in __builtins__.print

2009-08-29 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The patch looks ok to me. It should be noted that TextIOWrapper was not designed to be thread-safe at all (neither the Python nor the C version); but admittedly it is more common to write() than to read() from multiple threads, so fixing this

[issue6799] mimetypes does not give cannonical extension for guess_extension with text/plain

2009-08-29 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: This is quite a reasonable request indeed. -- nosy: +pitrou priority: - normal stage: - needs patch versions: -Python 2.5, Python 3.0 ___ Python tracker rep...@bugs.python.org

[issue6797] When Beginning Expression with Lookahead Assertion I get no Matches

2009-08-29 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com added the comment: (?![a-z0-9]) is a negative lookahead, so (?![a-z0-9])0 is saying that the next character shouldn't be any of [a-z0-9], yet it should match 0. Hence, no matches. -- nosy: +mrabarnett ___

[issue6797] When Beginning Expression with Lookahead Assertion I get no Matches

2009-08-29 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Thanks, MRAB! Closing as invalid. -- nosy: +marketdickinson resolution: - invalid status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6797

[issue6801] symmetric_difference_update documentation fix

2009-08-29 Thread Tarek Ziadé
New submission from Tarek Ziadé ziade.ta...@gmail.com: the symmetric_difference_update also accepts | -- assignee: tarek components: Documentation messages: 92065 nosy: tarek severity: normal status: open title: symmetric_difference_update documentation fix

[issue6713] Integer Long types: Performance improvement of 1.6x to 2x for base 10 conversions

2009-08-29 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- nosy: +marketdickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6713 ___ ___

[issue6245] Add intel universal architecture on OSX

2009-08-29 Thread Mattias Stahre
Mattias Stahre mattias.sta...@gmail.com added the comment: Is there any progress on this? -- nosy: +plux versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6245 ___

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Joshua Root
New submission from Joshua Root josh+pyt...@root.id.au: Building Python 2.6.2 on Mac OS X 10.6 (final version, 10A432) fails. Full build transcript is attached. Other system details: Xcode 3.2, hardware is MacPro1,1 -- assignee: ronaldoussoren components: Build, Macintosh files:

[issue6245] Add intel universal architecture on OSX

2009-08-29 Thread mike bayer
Changes by mike bayer mike...@zzzcomputing.com: -- nosy: +zzzeek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6245 ___ ___ Python-bugs-list

[issue6803] Context manager docs refer to contextlib.contextmanager as contextlib.contextfactory

2009-08-29 Thread Dan Haffey
New submission from Dan Haffey dhaf...@gmail.com: The documentation at http://docs.python.org/library/stdtypes.html#context-manager-types refers to the contextlib.contextmanager decorator as contextlib.contextfactory. -- assignee: georg.brandl components: Documentation files:

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Bryan Blackburn
Changes by Bryan Blackburn b...@users.sourceforge.net: -- nosy: +blb ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6802 ___ ___ Python-bugs-list

[issue1023290] Conversion of longs to bytes and vice-versa.

2009-08-29 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: The patch looks great! Some comments: - I think the type check for length_obj in long_tobytes should be more lenient: I'd suggest a PyIndex_Check and PyNumber_AsSsize_t conversion instead of the PyLong_Check. Or just use 'n' instead of

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: This also applies to trunk, py3k and release31-maint. -- versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6802

[issue6804] IDLE: Detect Python files even if name doesn't end in .py

2009-08-29 Thread Gabriel Genellina
New submission from Gabriel Genellina gagsl-...@yahoo.com.ar: A Python source file name doesn't necesarily end in .py/.pyw; on Linux, scripts usually have no extension but are recognized by its shebang line. Windows uses file type associations: .py files are of type Python.File, and .pyc

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Eric Smith
Changes by Eric Smith e...@trueblade.com: -- nosy: +eric.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6802 ___ ___ Python-bugs-list mailing

[issue6784] byte/unicode pickle incompatibilities between python2 and python3

2009-08-29 Thread Gabriel Genellina
Gabriel Genellina gagsl-...@yahoo.com.ar added the comment: Note that this is also a documentation issue: The pickle serialization format is guaranteed to be backwards compatible across Python releases. -- assignee: - georg.brandl components: +Documentation nosy: +gagenellina,

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Erik S. LaBianca
Changes by Erik S. LaBianca erik.labia...@gmail.com: -- nosy: +easel ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6802 ___ ___ Python-bugs-list

[issue6750] threading issue in __builtins__.print

2009-08-29 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: fixed with r74581, r74582 and r74583 (in: trunk, py3k and release31-maint) -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- nosy: +brett.cannon ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6802 ___ ___ Python-bugs-list

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: For those trying to debug this, to silence the math.h warnings, set MACOSX_DEPLOYMENT_TARGET to 10.6 or something. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6802

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: 3k and trunk compile fine for me. Clean snow leopard install. My first suggestion is nuking macports. -- nosy: +jnoller ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6802

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: 2.6.2 maint compiles fine too - again, with a clean install of Snow Leopard, no macports. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6802

[issue6802] build fails on Snow Leopard

2009-08-29 Thread Joshua Root
Joshua Root josh+pyt...@root.id.au added the comment: Note that this problem appears to be x86_64-specific (caused by - arch_only i386), and only happens if you configure with --enable- framework. -- ___ Python tracker rep...@bugs.python.org

[issue6805] Should be URL for documentation of current release of Python 3 (without version)

2009-08-29 Thread Mitchell Model
New submission from Mitchell Model m...@acm.org: There should be a standard URL on the web site to reach the documentation of the current stable release of Python 3. http://docs.python.org leads to the documentation for Python 2. I can get to Python 3.1 documentation, but I have to specify 3.1

[issue6802] build fails on Snow Leopard

2009-08-29 Thread dmw
Changes by dmw da...@humblehacker.com: -- nosy: +dmw ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6802 ___ ___ Python-bugs-list mailing list

[issue6806] test_platform fails under Snow Leopard

2009-08-29 Thread Brett Cannon
New submission from Brett Cannon br...@python.org: test.platform fails under Snow Leopard because the golden input for the OS version, sw_vers, reports Snow Leopard as '10.6' while platform.mac_ver()[0] (which uses gestalt.gestalt()) return '10.6.0'. Best solution might be to tweak the test

[issue6563] inserting None into sys.modules does not raise ImportError with importlib

2009-08-29 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Fixed in py3k with r74584 3.1 w/ r74586. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6563

[issue3143] Make the left sidebar in the doc collapsible

2009-08-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: Removed file: http://bugs.python.org/file14800/sidebar.zip ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3143 ___

[issue3143] Make the left sidebar in the doc collapsible

2009-08-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: Removed file: http://bugs.python.org/file14793/sidebar-old.js ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3143 ___

[issue3143] Make the left sidebar in the doc collapsible

2009-08-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: Removed file: http://bugs.python.org/file14799/sidebar.js ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3143 ___

[issue3143] Make the left sidebar in the doc collapsible

2009-08-29 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: This should be the final version, these are the things I improved: * added a per-browser/per-session cookie to save the position of the sidebar during a single session. When the browser is closed the position is reset and the cookie

[issue3143] Make the left sidebar in the doc collapsible

2009-08-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: Added file: http://bugs.python.org/file14805/sidebar.zip ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3143 ___