[issue15038] Optimize python Locks on Windows

2012-06-13 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15038 ___ ___ Python-bugs-list

[issue15026] Faster UTF-16 encoding

2012-06-13 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Here are results under 64-bit Linux on a Core i5-2500K: 3.3 patched 3327 (+360%) 15304 encode utf-16le 'A'*1 3314 (+335%) 14413 encode utf-16le '\x80'*1 3315 (+578%) 22472 encode utf-16le'\x80'+'A'* 2390 (+668%)

[issue15038] Optimize python Locks on Windows

2012-06-13 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- superseder: Locks broken wrt timeouts on Windows - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15038 ___

[issue15038] Optimize python Locks on Windows

2012-06-13 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- stage: - patch review type: enhancement - performance ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15038 ___

[issue15038] Optimize python Locks on Windows

2012-06-13 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: While I'm confident about the correctness of this implementation (it´s in production use right now) I´d like comments on the architecture. - Are people comfortable with the notion of an include file with an inline implementation

[issue4442] document immutable type subclassing via __new__

2012-06-13 Thread Mateusz Loskot
Mateusz Loskot mate...@loskot.net added the comment: Chris Withers' note clarifies it to me, that this should be Python-level rather than C-level documentation. Then the note under __new__() in 3. Data model seems right. Simply, I expected to have some notes in C API too Side note: as mainly

[issue4442] document immutable type subclassing via __new__

2012-06-13 Thread Chris Withers
Chris Withers ch...@simplistix.co.uk added the comment: Probably also wouldn't go amiss to put some notes near the docs for common immutable types that people might subclass: datetime, maybe tuple? -- ___ Python tracker rep...@bugs.python.org

[issue15054] bytes literals erroneously tokenized

2012-06-13 Thread Florent Xicluna
New submission from Florent Xicluna florent.xicl...@gmail.com: With Python 2.7, both b'hello' and br'hello' are wrong. With Python 3.3, b'hello' is wrong. $ python2.7 -m tokenize 'hello', u'hello', ur'hello', b'hello', br'hello' 1,0-1,7:STRING 'hello' 1,7-1,8:OP ','

[issue15054] bytes literals erroneously tokenized

2012-06-13 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15054 ___ ___ Python-bugs-list

[issue15049] line buffering isn't always

2012-06-13 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Indeed, line buffering on the read size would very slow (since you would have to read and decode one byte at a time from the raw stream to make sure you don't overshoot the line boundaries). -- ___

[issue13062] Introspection generator and function closure state

2012-06-13 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: Meador: I probably won't get to this until the weekend, so go ahead and update the patch if you have time. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13062

[issue13475] Add '-p'/'--path0' command line option to override sys.path[0] initialisation

2012-06-13 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: I was tempted to just add this (perhaps as a -X option) but, on reflection, I'm going to go with No, not for 3.3. I want to take a long hard look at the whole sys.path[0] initialisation process when I update PEP 395 to account for namespace

[issue15020] default value for progname in pythonrun.c should be python3 for Python 3

2012-06-13 Thread Joshua Cogliati
Changes by Joshua Cogliati jrinc...@gmail.com: -- title: Poor default value for progname in pythonrun.c - default value for progname in pythonrun.c should be python3 for Python 3 ___ Python tracker rep...@bugs.python.org

[issue15055] dictnotes.txt is out of date

2012-06-13 Thread Mark Shannon
New submission from Mark Shannon m...@hotpy.org: dictnotes.txt is out of date w.r.t. dictobject.c Remove notes from dictnotes.txt that duplicate comments in dictobject.c and ensure comments in dictobject.c cover all aspects of tunable parameters. Patch attached. -- assignee:

[issue15055] dictnotes.txt is out of date

2012-06-13 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- assignee: docs@python - rhettinger nosy: +rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15055 ___

[issue15055] dictnotes.txt is out of date

2012-06-13 Thread Raymond Hettinger
Raymond Hettinger raymond.hettin...@gmail.com added the comment: Mark, where was it approved that you could change all the tunable parameters? I remembered that the split dict was approved but not changing all of the tuneables (at one point, I had spent a month validating that the tuneables

[issue15055] dictnotes.txt is out of date

2012-06-13 Thread Mark Shannon
Mark Shannon m...@hotpy.org added the comment: Raymond, I don't think this is the place to discuss the changes to the tunables in dictobject.c. This patch merely ensures that dictnotes.txt and the comments in dictobject.c are in agreement. It doesn't change any code (apart from creating the

[issue15056] Have imp.cache_from_source() raise NotImplementedError when cache tag not available

2012-06-13 Thread Brett Cannon
New submission from Brett Cannon br...@python.org: Both imp.cache_from_source() and source_from_cache() should throw NotImplementedError when sys.implementation.cache_tag is None. See the thread starting at http://mail.python.org/pipermail/python-dev/2012-June/120145.html for discussion of

[issue15056] Have imp.cache_from_source() raise NotImplementedError when cache tag not available

2012-06-13 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15056 ___ ___ Python-bugs-list

[issue15056] Have imp.cache_from_source() raise NotImplementedError when cache tag not available

2012-06-13 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: It seems to me there is overlap between sys.implementation.cache_tag and sys.dont_write_bytecode. I was expecting sys.impl.cache_tag to be purely informational, and not actually controlling some behavior. “If cache_tag is set to None, it

[issue13783] Clean up PEP 380 C API additions

2012-06-13 Thread Mark Shannon
Mark Shannon m...@hotpy.org added the comment: There is one call to PyGen_FetchStopIterationValue in ceval.c. But I don't think it should be public. There is no real reason for the Gen in the name. The function is used by generator handling code, but the code itself relates to StopIteration.

[issue15050] Python 3.2.3 fail to make

2012-06-13 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: This is a misconfiguration of your system. Take a look at line 29538 of config.log. It says configure:13701: ./conftest ld.so.1: ./conftest: ÖÂÃüµÄ: libintl.so.8: ´ò¿ªÊ§°Ü: ÎÞ´ËÎļþ»òĿ¼ ./configure: line -1756: 8400 Killed

[issue13841] multiprocessing should use sys.exit() where possible

2012-06-13 Thread Richard Oudkerk
Richard Oudkerk shibt...@gmail.com added the comment: The trivial patch of replacing exit() by sys.exit() caused manager processes to be terminated after a short timeout. (It is inconvenient that in Python there is no way for a non-main thread to request immediate shutdown of the process.)

[issue15057] Potential Bugs in mpd_qdivint and mpd_qrem

2012-06-13 Thread Ken Cheung
New submission from Ken Cheung msrbugzi...@gmail.com: I observed a code clone from the following files. function : mpd_qdivint @ (file: Python-3.3.0a2/Modules/_decimal/libmpdec/mpdecimal.c, line: 3727)~3763 function : mpd_qrem @ (file: Python-3.3.0a2/Modules/_decimal/libmpdec/mpdecimal.c,

[issue15057] Potential Bug in mpd_qdivint and mpd_qrem

2012-06-13 Thread Ken Cheung
Changes by Ken Cheung msrbugzi...@gmail.com: -- title: Potential Bugs in mpd_qdivint and mpd_qrem - Potential Bug in mpd_qdivint and mpd_qrem ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15057

[issue15058] Potential Bugs in dlpvalloc and dlvalloc

2012-06-13 Thread Ken Cheung
New submission from Ken Cheung msrbugzi...@gmail.com: I observed a code clone from the following files. function : dlpvalloc @ (file: Python-3.3.0a2/Modules/_ctypes/libffi/src/dlmalloc.c, line: 4360)~4362 function : dlvalloc @ (file: Python-3.3.0a2/Modules/_ctypes/libffi/src/dlmalloc.c, line:

[issue15058] Potential Bug in dlpvalloc and dlvalloc

2012-06-13 Thread Ken Cheung
Changes by Ken Cheung msrbugzi...@gmail.com: -- title: Potential Bugs in dlpvalloc and dlvalloc - Potential Bug in dlpvalloc and dlvalloc ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15058

[issue15059] Potential Bug in mpd_qresize and mpd_qresize_zero

2012-06-13 Thread Ken Cheung
New submission from Ken Cheung msrbugzi...@gmail.com: I observed a code clone from the following files. function : mpd_qresize @ (file: Python-3.3.0a2/Modules/_decimal/libmpdec/mpdecimal.c, line: 481)~493 function : mpd_qresize_zero @ (file:

[issue15057] Potential Bug in mpd_qdivint and mpd_qrem

2012-06-13 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: +skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15057 ___ ___ Python-bugs-list mailing list

[issue15056] Have imp.cache_from_source() raise NotImplementedError when cache tag not available

2012-06-13 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: -- nosy: +eric.snow ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15056 ___ ___ Python-bugs-list

[issue15060] docs: socket typo

2012-06-13 Thread anatoly techtonik
New submission from anatoly techtonik techto...@gmail.com: http://docs.python.org/library/socket.html s/integral/integer/ -- assignee: docs@python components: Documentation messages: 162720 nosy: docs@python, techtonik priority: normal severity: normal status: open title: docs: socket

[issue15058] Potential Bug in dlpvalloc and dlvalloc

2012-06-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +amaury.forgeotdarc, meador.inge ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15058 ___

[issue15059] Potential Bug in mpd_qresize and mpd_qresize_zero

2012-06-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15059 ___ ___ Python-bugs-list

[issue15058] Potential Bug in dlpvalloc and dlvalloc

2012-06-13 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Well, this bitwise operation is exactly why there are two functions: dlvpalloc rounds up to the nearest page size, and dlvalloc does not. -- resolution: - works for me status: open - closed

[issue9679] unicode DNS names in urllib, urlopen

2012-06-13 Thread John Nagle
John Nagle na...@users.sourceforge.net added the comment: A IRI library is not needed to fix this problem. It's already fixed in the sockets library and the http library. We just need consistency in urllib2. urllib2 functions which take a url parameter should apply encodings.idna.ToASCII

[issue9679] unicode DNS names in urllib, urlopen

2012-06-13 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: I doubt that unicode domain support in urllib would be of much use without full IRI support. I would think that a domain that uses unicode is highly likely to have URLs that use unicode. However that doesn't mean a patch along the

[issue3955] maybe doctest doesn't understand unicode_literals?

2012-06-13 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Yeah, I don't really remember now what my point was. -- status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3955 ___

[issue15052] Outdated comments in build_ssl.py

2012-06-13 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: The comment is correct. The sources are not. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15052 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25953/pec2.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25956/pec5.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25960/pec9.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25961/pec10.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25963/pec12.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25967/pec16.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25968/pec17.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25952/pec1.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25954/pec3.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25955/pec4.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25957/pec6.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25972/pec21.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25958/pec7.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25959/pec8.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25974/pec23.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25962/pec11.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25964/pec13.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25975/pec24.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25965/pec14.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25976/pec25.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25966/pec15.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25977/pec26.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25969/pec18.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25970/pec19.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25978/pec27.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25971/pec20.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25979/pec28.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25973/pec22.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25980/pec29.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25981/pec30.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25982/pec31.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25983/pec32.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25984/pec33.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue14674] Link to explain deviations from RFC 4627 in json module docs

2012-06-13 Thread Chris Rebert
Changes by Chris Rebert pyb...@rebertia.com: Removed file: http://bugs.python.org/file25594/json.rst.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14674 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25985/pec34.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25986/pec35.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25987/pec36.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25988/pec37.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25989/pec38.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25990/pec39.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25991/pec40.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25992/pec41.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25993/pec42.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25994/pec43.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25995/pec44.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25996/pec45.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25997/pec46.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue14674] Link to explain deviations from RFC 4627 in json module docs

2012-06-13 Thread Chris Rebert
Chris Rebert pyb...@rebertia.com added the comment: Any further comments now that the matter of encodings is covered more thoroughly? -- Added file: http://bugs.python.org/file25999/json.rst.patch ___ Python tracker rep...@bugs.python.org

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file25998/pec47.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan gukaa...@yahoo.com: Added file: http://bugs.python.org/file26000/pec48.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1054 ___

[issue14674] Link to explain deviations from RFC 4627 in json module docs

2012-06-13 Thread Chris Rebert
Changes by Chris Rebert pyb...@rebertia.com: Removed file: http://bugs.python.org/file25606/json.rst.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14674 ___

[issue9679] unicode DNS names in urllib, urlopen

2012-06-13 Thread Chris Rebert
Changes by Chris Rebert pyb...@rebertia.com: -- nosy: +cvrebert ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9679 ___ ___ Python-bugs-list

[issue4442] document immutable type subclassing via __new__

2012-06-13 Thread Chris Rebert
Changes by Chris Rebert pyb...@rebertia.com: -- nosy: +cvrebert ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4442 ___ ___ Python-bugs-list

[issue14599] Windows test_import failure thanks to ImportError.path

2012-06-13 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: The issue is related to MAXPATHLEN limit and how is implemented . One part of request are already closed , another part wait . Some people port patches other wrote that would not use very long path. I'm in the second group. This

[issue13241] llvm-gcc-4.2 miscompiles Python (XCode 4.1 on Mac OS 10.7)

2012-06-13 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: The attached configure.ac is a fragment of a configure script that tries to detect if AC_PROG_CC would pick llvm-gcc when clang is also available and then explicitly picks clang. This would avoid python3.3 won't build on OSX 10.7 bug

[issue7584] datetime.rfcformat() for Date and Time on the Internet

2012-06-13 Thread Alexander Belopolsky
Alexander Belopolsky alexander.belopol...@gmail.com added the comment: David, Isn't the requested feature now implemented as email.utils.format_datetime()? Also, what is the difference between RFC 3339 format and the one provided by datetime.isoformat? print(datetime(2000,1,1,

[issue13556] When tzinfo.utcoffset is out-of-bounds, the exception message is misleading

2012-06-13 Thread Alexander Belopolsky
Alexander Belopolsky alexander.belopol...@gmail.com added the comment: Does anyone still care about this issue? I think the error message in 3.2 is good enough and fixing this in 2.x is not worth the trouble. I am inclined to close this as won't fix. -- versions: +Python 3.3 -Python

[issue7584] datetime.rfcformat() for Date and Time on the Internet

2012-06-13 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: email.utils.format_datetime implements RFC 5322 date format, which is very different from RFC 3339. I don't remember enough about what I read in RFC 3339 to answer your question about isoformat. --

[issue1100942] Add datetime.time.strptime and datetime.date.strptime

2012-06-13 Thread Alexander Belopolsky
Alexander Belopolsky alexander.belopol...@gmail.com added the comment: Bumping priority to get this in before beta. -- priority: normal - high ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1100942

[issue1667546] Time zone-capable variant of time.localtime

2012-06-13 Thread Alexander Belopolsky
Alexander Belopolsky alexander.belopol...@gmail.com added the comment: I've simplified Paul's patch by removing timegm and mktimetz functions. Also, platforms that don't support tm_zone are unaffected. -- stage: patch review - commit review Added file:

[issue15060] docs: socket typo

2012-06-13 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 744fb52ffdf0 by Sandro Tosi in branch '2.7': Issue #15060: fix typo in socket doc; Patch by anatoly techtonik http://hg.python.org/cpython/rev/744fb52ffdf0 New changeset 4d755a711823 by Sandro Tosi in branch '3.2':

[issue15060] docs: socket typo

2012-06-13 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com added the comment: Thanks! -- nosy: +sandro.tosi resolution: - fixed stage: - committed/rejected status: open - closed versions: +Python 2.7, Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org

  1   2   >