[issue6697] Check that _PyUnicode_AsString() result is not NULL

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file14730/pymain.patch ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue6697] Check that _PyUnicode_AsString() result is not NULL

2010-05-16 Thread STINNER Victor
STINNER Victor added the comment: pymain.patch commited as r81250. Wait for the buildbot before backporting it to 3.1. -- ___ Python tracker ___

[issue6697] Check that _PyUnicode_AsString() result is not NULL

2010-05-16 Thread STINNER Victor
STINNER Victor added the comment: I fixed ssl.RAND_egd() in r81239 (issue #8477). Remove the other commited patches to see quickly which patches remain. -- ___ Python tracker __

[issue6697] Check that _PyUnicode_AsString() result is not NULL

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file16443/ssl_rand_egd_unicode-py3k.patch ___ Python tracker ___ ___ Python-bu

[issue6697] Check that _PyUnicode_AsString() result is not NULL

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file16502/unicode_fromformat_U.patch ___ Python tracker ___ ___ Python-bugs-li

[issue6697] Check that _PyUnicode_AsString() result is not NULL

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file16442/object_pyunicode_asstring-py3k.patch ___ Python tracker ___ ___ Pyt

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
STINNER Victor added the comment: Ok, everything is ready for this issue: os.environb and os.fsencode() are commited, and test_os is prepared to test os._execvpe() change. I'm just waiting for a review. Execpt the change on os.get_exec_path(), the patch is now simple. -- keywords: +n

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Added file: http://bugs.python.org/file17379/subprocess_bytes_program-5.patch ___ Python tracker ___ ___ Python-bug

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file17378/subprocess_bytes_program-4.patch ___ Python tracker ___ ___ Python-b

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file17261/issue8513_partA-fsencode.patch ___ Python tracker ___ ___ Python-bug

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file17240/issue8513_partA.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file17376/subprocess_bytes_program-4.patch ___ Python tracker ___ ___ Python-b

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Added file: http://bugs.python.org/file17378/subprocess_bytes_program-4.patch ___ Python tracker ___ ___ Python-bug

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
STINNER Victor added the comment: I forgot to update test_os: patch version 5. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue4870] ssl module is missing SSL_OP_NO_SSLv2

2010-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: It turns out SSL_CTX_clear_options() is not available before OpenSSL 0.9.8m. I adapted my patch to raise a ValueError when trying to clear options on older versions of OpenSSL. Setting additional options still works, though. -- Added file: http://bugs

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file17372/subprocess_bytes_program-3.patch ___ Python tracker ___ ___ Python-b

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
STINNER Victor added the comment: I asked on #python-dev about os.get_exec_path() result type. As expected, the answer was "It's a really bad idea". So here is a new version of my patch. Summary of the patch version 4: - subprocess.Popen() and os._execvpe() support bytes program name - os.ge

[issue4870] ssl module is missing SSL_OP_NO_SSLv2

2010-05-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file17374/sslopts3.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue4870] ssl module is missing SSL_OP_NO_SSLv2

2010-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: Updated patch adds a couple of words about SSLv2 in the "security considerations" paragraph. Reviewing is welcome. -- Added file: http://bugs.python.org/file17375/sslopts3.patch ___ Python tracker

[issue8737] ssl.RAND_add() should only accept bytes (not str)

2010-05-16 Thread STINNER Victor
STINNER Victor added the comment: > the kind of data is not important, and no matter which encoding > is used, this will not change the quality of the entropy. Ok, you are right :-) -- resolution: -> invalid status: open -> closed ___ Python track

[issue4870] ssl module is missing SSL_OP_NO_SSLv2

2010-05-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : Added file: http://bugs.python.org/file17374/sslopts3.patch ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue4870] ssl module is missing SSL_OP_NO_SSLv2

2010-05-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file17373/sslopts3.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue8685] set(range(100000)).difference(set()) is slow

2010-05-16 Thread Andrew Bennetts
Andrew Bennetts added the comment: Antoine: Thanks for the updated benchmark results! I should have done that myself earlier. -- ___ Python tracker ___

[issue4870] ssl module is missing SSL_OP_NO_SSLv2

2010-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is an updated patch, following checkin of the new SSL contexts. Options can be specified as an `options` property on SSL contexts. -- nosy: +exarkun, heikki Added file: http://bugs.python.org/file17373/sslopts3.patch _

[issue8665] "make pycremoval" fails

2010-05-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> fixed status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8737] ssl.RAND_add() should only accept bytes (not str)

2010-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: I think Amaury is right. You could add a test that bytes are also accepted, though. -- ___ Python tracker ___ _

[issue8513] subprocess: support bytes program name (POSIX)

2010-05-16 Thread STINNER Victor
STINNER Victor added the comment: Oops, I forgot to add the new patch: subprocess_bytes_program-3.patch. -- Added file: http://bugs.python.org/file17372/subprocess_bytes_program-3.patch ___ Python tracker _

[issue8737] ssl.RAND_add() should only accept bytes (not str)

2010-05-16 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue8737] ssl.RAND_add() should only accept bytes (not str)

2010-05-16 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: This function is here to add entropy to the random numbers generator. the kind of data is not important, and no matter which encoding is used, this will not change the quality of the entropy. -- nosy: +amaury.forgeotdarc

[issue8477] _ssl: support surrogates in filenames, and bytes/bytearray filenames

2010-05-16 Thread STINNER Victor
STINNER Victor added the comment: Oh, I forgot to patch RAND_egd()! Fixed: r81239 (py3k, blocked in 3.1: r81240). The whole ssl module should now be fully "str+surrogates/bytes filenames" compliant :-) -- ___ Python tracker

[issue8737] ssl.RAND_add() should only accept bytes (not str)

2010-05-16 Thread STINNER Victor
New submission from STINNER Victor : PySSL_RAND_add() uses PyArg_ParseTuple(args, "s#d:RAND_add", ...) and so converts implicitly str to bytes using UTF-8. I would prefer that this function only accepts bytes: the user will have to encode str to bytes *explicitly*. Attached patch replace s# fo

[issue8477] _ssl: support surrogates in filenames, and bytes/bytearray filenames

2010-05-16 Thread STINNER Victor
STINNER Victor added the comment: I commited the fix on _ssl._test_decode_cert() as r81237 (py3k, blocked in 3.1: r81238). Issue #8550 got accepted and uses PyUnicode_FSConverter for the filenames (except _ssl._test_decode_cert() which is now fixed). -- resolution: -> fixed status: o

[issue7946] Convoy effect with I/O bound threads and New GIL

2010-05-16 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue8550] Expose SSL contexts

2010-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: A couple of buildbot failures led to fixes in r81234 and r81235. Everything should be fine now. -- resolution: accepted -> fixed status: open -> closed ___ Python tracker

[issue8736] *= is undocumented for lists

2010-05-16 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : -- assignee: stutzbach components: Documentation keywords: easy nosy: stutzbach priority: normal severity: normal stage: needs patch status: open title: *= is undocumented for lists versions: Python 2.7, Python 3.2 ___ Py

[issue2211] Cookie.Morsel interface needs update

2010-05-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue8716] test_tk fails on OS X if run from buildbot slave daemon -- crashes Python

2010-05-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: Tk has a different tracker than tcl itself, the upstream issue is now -- ___ Python tracker

[issue8735] optparse: parse_args(values=...) does not set up default values

2010-05-16 Thread John W. Shipman
New submission from John W. Shipman : optparse's .parse_args() method has a 'values=...' keyword argument that is documented as: 'object to store option arguments in (default: a new instance of optparse.Values)' There is no description of what types this argument may have. I was writing

[issue6916] Remove deprecated items from asynchat

2010-05-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue7946] Convoy effect with I/O bound threads and New GIL

2010-05-16 Thread Nir Aides
Nir Aides added the comment: A link to ccbench results comparing old GIL, old GIL with long check interval, new GIL and BFS: http://bugs.python.org/file17370/nir-ccbench-linux.log Summary: Results for ccbench latency and bandwidth test run on Ubuntu Karmic 64bit, q9400 2.6GHz, all Python ver

[issue7946] Convoy effect with I/O bound threads and New GIL

2010-05-16 Thread Nir Aides
Changes by Nir Aides : Added file: http://bugs.python.org/file17370/nir-ccbench-linux.log ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue7969] shutil.copytree error handling non-standard and partially broken

2010-05-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue8550] Expose SSL contexts

2010-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've committed the patch in r81233. I'm going to watch the buildbots and close the issue if everything's fine. -- assignee: -> pitrou resolution: -> accepted stage: patch review -> committed/rejected ___ Python tr

[issue8523] shutil.rmtree and os.listdir cannot recover on error conditions

2010-05-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue8732] Should urrllib2.urlopen send an Accept-Encoding header?

2010-05-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> orsenthil nosy: +orsenthil type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___

[issue8734] msvcrt get_osfhandle crash on bad FD

2010-05-16 Thread Pascal Chambon
New submission from Pascal Chambon : In python trunk, _set_invalid_parameter_handler() has been dropped and replaced by custom checking functions, but in msvcrt.get_osfhandle() these checks aren't present, so providing a bad FD leads to a crash. Here is the little fix + a test (added to test_f

[issue808129] Change --changelog to accept files

2010-05-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue4931] distutils does not show any error msg when can't build C module extensions due to a missing C compiler

2010-05-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue8733] list type and UserList do not call super in __init__ and therefore, they cannot be parents in a multiple inheritence scheme

2010-05-16 Thread alon horev
Changes by alon horev : -- components: Extension Modules nosy: alonho priority: normal severity: normal status: open title: list type and UserList do not call super in __init__ and therefore, they cannot be parents in a multiple inheritence scheme type: behavior versions: Python 3.3 __

[issue8550] Expose SSL contexts

2010-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch addressing Heikki's and Jean-Paul's review comments (including additional documentation and a test for capath). -- Added file: http://bugs.python.org/file17368/sslcontext4.patch ___ Python tracker <

[issue8732] Should urrllib2.urlopen send an Accept-Encoding header?

2010-05-16 Thread Dave Abrahams
New submission from Dave Abrahams : According to the RFC, the server is allowed to send back any encoding it likes when no Accept-Encoding header is supplied, but all the examples I can find of urllib2.urlopen usage assume they're getting plain text back. I think it would be better to inject

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Florent Xicluna added the comment: Proposed patches for quote and unquote on 2.7 and 3.2. -- Added file: http://bugs.python.org/file17367/issue1285086_using_rstrip_py3k.diff ___ Python tracker __

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file17366/issue1285086_using_rstrip_v2.diff ___ Python tracker ___ ___ Pytho

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Florent Xicluna added the comment: Updated script for benchmarks (on 2.x and 3.x). Inspired by the "Tools/iobench" script. It benchmarks various quote/unquote implementations on 2.x and 3.x. On 2.7 the fastest implementation is something like: def quote(s): if not s or not s.rstri

[issue8557] subprocess PATH semantics and portability

2010-05-16 Thread Dave Abrahams
Dave Abrahams added the comment: New data point: in some contexts on Windows (not sure of the exact cause but I was dealing with multiple drives), even this workaround isn't enough. I ended up having to do something like this (i.e. manually search the path) on win32: def full_executable

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file17299/urllib_quote_speed_test.py ___ Python tracker ___ ___ Python-bug

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file17298/issue1285086_using_rstrip.diff ___ Python tracker ___ ___ Python

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file17295/issue1285086_using_translate.diff ___ Python tracker ___ ___ Pyt

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file17291/issue1285086_fast_quote.diff ___ Python tracker ___ ___ Python-b

[issue8730] Spurious test failure in distutils

2010-05-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: $ compress --version compress - sharutils 4.2c And yes, this is jucky behavior. Most systems shouldn't be affected by this because sharutils isn't used a lot these days. -- ___ Python tracker

[issue8731] BeOS for 2.7 - add to unsupported

2010-05-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue3686] PKG-INFO file should differentiate between authors and maintainers

2010-05-16 Thread Tarek Ziadé
Tarek Ziadé added the comment: This is now defined in PEP 345 and implemented in Distutils2. -- components: +Distutils2 -Distutils status: open -> closed ___ Python tracker ___ _

[issue8730] Spurious test failure in distutils

2010-05-16 Thread Tarek Ziadé
Tarek Ziadé added the comment: ouch, what a bad practice... The compress feature is going away anyway. Could you tell me what "compress --version" says ? Maybe we can use that output to discard this fake command when looking for the compress program. -- ___

[issue8731] BeOS for 2.7 - add to unsupported

2010-05-16 Thread Roumen Petrov
New submission from Roumen Petrov : PEP 11 describe BeOS support as : "Python 2.7 (edit configure to reenable)" -- components: Build files: python-2.7-beos-unsupported.patch keywords: patch messages: 105863 nosy: rpetrov priority: normal severity: normal status: open title: BeOS for 2.7

[issue8730] Spurious test failure in distutils

2010-05-16 Thread Ronald Oussoren
New submission from Ronald Oussoren : Output of test_distutils on a older SuSE Linux system: FAILED (errors=1, skipped=5) Traceback (most recent call last): File "../Lib/test/test_distutils.py", line 18, in test_main() File "../Lib/test/test_distutils.py", line 13, in test_main test

[issue8699] Equality and hashing for functools.partial

2010-05-16 Thread Daniel Urban
Daniel Urban added the comment: In this new patch, __eq__ compares also the __dict__ of the two partial instances. -- Added file: http://bugs.python.org/file17363/partial_eq_hash_4.diff ___ Python tracker

[issue3754] cross-compilation support for python build

2010-05-16 Thread Roumen Petrov
Changes by Roumen Petrov : Removed file: http://bugs.python.org/file15987/python-trunk-20100124-CROSS.patch ___ Python tracker ___ ___ Python-b

[issue3754] cross-compilation support for python build

2010-05-16 Thread Roumen Petrov
Changes by Roumen Petrov : Removed file: http://bugs.python.org/file15724/python-trunk-20100103-CROSS.patch ___ Python tracker ___ ___ Python-b

[issue3754] cross-compilation support for python build

2010-05-16 Thread Roumen Petrov
Changes by Roumen Petrov : Removed file: http://bugs.python.org/file15464/python-trunk-20091206-CROSS.patch ___ Python tracker ___ ___ Python-b

[issue3754] cross-compilation support for python build

2010-05-16 Thread Roumen Petrov
Changes by Roumen Petrov : Removed file: http://bugs.python.org/file15415/python-trunk-20091129-CROSS.patch ___ Python tracker ___ ___ Python-b

[issue3754] cross-compilation support for python build

2010-05-16 Thread Roumen Petrov
Changes by Roumen Petrov : Removed file: http://bugs.python.org/file15260/python-trunk-20091104-CROSS.patch ___ Python tracker ___ ___ Python-b

[issue3754] cross-compilation support for python build

2010-05-16 Thread Roumen Petrov
Changes by Roumen Petrov : Removed file: http://bugs.python.org/file14539/python-trunk-20090722-CROSS.patch ___ Python tracker ___ ___ Python-b

[issue3871] cross and native build of python for mingw32 with distutils

2010-05-16 Thread Roumen Petrov
Roumen Petrov added the comment: Common to all platforms part of patches lets call it "build modules with system python" is moved to issue 3754. -- Added file: http://bugs.python.org/file17362/python-trunk-20100516-MINGW.patch ___ Pyth

[issue3754] cross-compilation support for python build

2010-05-16 Thread Roumen Petrov
361/python-trunk-20100516-CROSS.patch ___ Python tracker <http://bugs.python.org/issue3754> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailma

[issue8688] distutils sdist is too laze w.r.t. recalculating MANIFEST

2010-05-16 Thread Tarek Ziadé
Changes by Tarek Ziadé : -- priority: normal -> high ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue8688] distutils sdist is too laze w.r.t. recalculating MANIFEST

2010-05-16 Thread Tarek Ziadé
Tarek Ziadé added the comment: The same problem occurs without a manifest template: you can have options or imports in setup.py that will change the MANIFEST file. For example : if setup() has: packages=['foo'] And if you add a subpackage "bar" in "foo" with some modules, with an existing

[issue8550] Expose SSL contexts

2010-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Since SSLv2 is insecure, could you at least add a warning for that > protocol? I think there was a separate issue for removing it > altogether, but could a warning be added here? I think it should be a separate issue (since it also applies to the legacy API).

[issue8688] distutils sdist is too laze w.r.t. recalculating MANIFEST

2010-05-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: One way to fix this: is to always recreate MANIFEST when an explicit MANIFEST.in file exists, as in the attached patch. (The patch is not perfect: I'd rename "template_newer" before committing) -- keywords: +needs review, patch Added file: http://bug

[issue5766] Mac/scripts/BuildApplet.py reset of sys.executable during install can cause it to use wrong modules

2010-05-16 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: -> ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue8716] test_tk fails on OS X if run from buildbot slave daemon -- crashes Python

2010-05-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: Something I forgot to mention: the patch introduces "_tkinter.m" to enable compiling the _tkinter extension as Objective-C code. The compiler also supports passing "-x objective-c" to compile _tkinter.c in Objective-C mode, but this flag must be specified e

[issue8716] test_tk fails on OS X if run from buildbot slave daemon -- crashes Python

2010-05-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: The attached patch is a first start at working around the crash. With this patch I can use Tk without a crash: >>> import Tkinter >>> Tkinter.Tk() Sun May 16 12:11:08 Rivendell.local python.exe[55984] : kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint()

[issue8716] test_tk fails on OS X if run from buildbot slave daemon -- crashes Python

2010-05-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: BTW. Another way of testing, assuming you have two accounts: use 'su - otheraccount' to get a shell session as another user then try to start tk using: import Tkinter root = Tkinter.Tk() This will currently crash the interpreter due to an uncaught Objective-

[issue8716] test_tk fails on OS X if run from buildbot slave daemon -- crashes Python

2010-05-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've filed an issue for this in the Tcl/Tk tracker: (Assuming that this is the canonical tracker for the Tcl/Tk project, it was the first hit in google for 'tk bug tracker'

[issue8692] Use divide-and-conquer for faster factorials

2010-05-16 Thread Mark Dickinson
Mark Dickinson added the comment: Committed in r81196. Thanks, everyone! -- status: open -> closed ___ Python tracker ___ ___ Python-

[issue8633] tarfile doesn't support undecodable filename in PAX format

2010-05-16 Thread Lars Gustäbel
Changes by Lars Gustäbel : -- assignee: -> lars.gustaebel ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue8721] urlparse.urlsplit regression in 2.7

2010-05-16 Thread Senthil Kumaran
Senthil Kumaran added the comment: FWIW, it should also be noted that RFC asserts square brackets to be valid characters in the hostname portion only and that too when it is a IPv6 url. In the example given, at the query portion, it should be quoted (or percent-encoded) -- __