[issue15038] Optimize python Locks on Windows

2012-06-13 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue15026] Faster UTF-16 encoding

2012-06-13 Thread Antoine Pitrou
Antoine Pitrou 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%) 18345 encode

[issue15038] Optimize python Locks on Windows

2012-06-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- superseder: Locks broken wrt timeouts on Windows -> ___ Python tracker ___ ___ Python-bugs-list mailin

[issue15038] Optimize python Locks on Windows

2012-06-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: -> patch review type: enhancement -> performance ___ Python tracker ___ ___ Python-bugs-list ma

[issue15038] Optimize python Locks on Windows

2012-06-13 Thread Kristján Valur Jónsson
Kristján Valur Jónsson 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 of portable condition

[issue4442] document immutable type subclassing via __new__

2012-06-13 Thread Mateusz Loskot
Mateusz Loskot 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 Python C API user,

[issue4442] document immutable type subclassing via __new__

2012-06-13 Thread Chris Withers
Chris Withers 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

[issue15054] bytes literals erroneously tokenized

2012-06-13 Thread Florent Xicluna
New submission from Florent Xicluna : 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 ',' 1,9-1,17: STRING

[issue15054] bytes literals erroneously tokenized

2012-06-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue15049] line buffering isn't always

2012-06-13 Thread Antoine Pitrou
Antoine Pitrou 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). -- ___ Python tracker

[issue13062] Introspection generator and function closure state

2012-06-13 Thread Nick Coghlan
Nick Coghlan 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 ___ ___

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

2012-06-13 Thread Nick Coghlan
Nick Coghlan 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 packages, and it d

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

2012-06-13 Thread Joshua Cogliati
Changes by Joshua Cogliati : -- title: Poor default value for progname in pythonrun.c -> default value for progname in pythonrun.c should be python3 for Python 3 ___ Python tracker

[issue15055] dictnotes.txt is out of date

2012-06-13 Thread Mark Shannon
New submission from Mark Shannon : 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: docs@python components:

[issue15055] dictnotes.txt is out of date

2012-06-13 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: docs@python -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list ma

[issue15055] dictnotes.txt is out of date

2012-06-13 Thread Raymond Hettinger
Raymond Hettinger 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 were correct across a wide v

[issue15055] dictnotes.txt is out of date

2012-06-13 Thread Mark Shannon
Mark Shannon 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 GROWTH_RATE ma

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

2012-06-13 Thread Brett Cannon
New submission from Brett Cannon : 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 this decision. ---

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

2012-06-13 Thread Brett Cannon
Changes by Brett Cannon : -- stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

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

2012-06-13 Thread Éric Araujo
Éric Araujo 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 indicates that module c

[issue13783] Clean up PEP 380 C API additions

2012-06-13 Thread Mark Shannon
Mark Shannon 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. Perhaps it s

[issue15050] Python 3.2.3 fail to make

2012-06-13 Thread Martin v . Löwis
Martin v. Löwis 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 ./conftest$ac_ex

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

2012-06-13 Thread Richard Oudkerk
Richard Oudkerk 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.) This new patch makes

[issue15057] Potential Bugs in mpd_qdivint and mpd_qrem

2012-06-13 Thread Ken Cheung
New submission from Ken Cheung : 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", line: 6331)~6361 The

[issue15057] Potential Bug in mpd_qdivint and mpd_qrem

2012-06-13 Thread Ken Cheung
Changes by Ken Cheung : -- title: Potential Bugs in mpd_qdivint and mpd_qrem -> Potential Bug in mpd_qdivint and mpd_qrem ___ Python tracker ___

[issue15058] Potential Bugs in dlpvalloc and dlvalloc

2012-06-13 Thread Ken Cheung
New submission from Ken Cheung : 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: 4353)~4355 The f

[issue15058] Potential Bug in dlpvalloc and dlvalloc

2012-06-13 Thread Ken Cheung
Changes by Ken Cheung : -- title: Potential Bugs in dlpvalloc and dlvalloc -> Potential Bug in dlpvalloc and dlvalloc ___ Python tracker ___

[issue15059] Potential Bug in mpd_qresize and mpd_qresize_zero

2012-06-13 Thread Ken Cheung
New submission from Ken Cheung : 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: "Python-3.3.0a2/Modules/_decimal/libmpdec/mpdecimal.c", line: 501)~517

[issue15057] Potential Bug in mpd_qdivint and mpd_qrem

2012-06-13 Thread Ned Deily
Changes by Ned Deily : -- nosy: +skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/m

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

2012-06-13 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue15060] docs: socket typo

2012-06-13 Thread anatoly techtonik
New submission from anatoly techtonik : 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 typo __

[issue15058] Potential Bug in dlpvalloc and dlvalloc

2012-06-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: +amaury.forgeotdarc, meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue15059] Potential Bug in mpd_qresize and mpd_qresize_zero

2012-06-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: +skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue15058] Potential Bug in dlpvalloc and dlvalloc

2012-06-13 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc 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 ___ Python track

[issue9679] unicode DNS names in urllib, urlopen

2012-06-13 Thread John Nagle
John Nagle 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" to each label of the d

[issue9679] unicode DNS names in urllib, urlopen

2012-06-13 Thread R. David Murray
R. David Murray 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 lines you suggest would be

[issue3955] maybe doctest doesn't understand unicode_literals?

2012-06-13 Thread Georg Brandl
Georg Brandl added the comment: Yeah, I don't really remember now what my point was. -- status: pending -> closed ___ Python tracker ___ _

[issue15052] Outdated comments in build_ssl.py

2012-06-13 Thread Martin v . Löwis
Martin v. Löwis added the comment: The comment is correct. The sources are not. -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25953/pec2.html ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25956/pec5.html ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25960/pec9.html ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25961/pec10.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25963/pec12.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25967/pec16.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25968/pec17.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25952/pec1.html ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25954/pec3.html ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25955/pec4.html ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25957/pec6.html ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25972/pec21.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25958/pec7.html ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25959/pec8.html ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25974/pec23.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25962/pec11.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25964/pec13.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25975/pec24.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25965/pec14.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25976/pec25.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25966/pec15.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25977/pec26.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25969/pec18.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25970/pec19.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25978/pec27.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25971/pec20.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25979/pec28.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25973/pec22.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25980/pec29.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25981/pec30.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25982/pec31.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25983/pec32.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25984/pec33.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

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

2012-06-13 Thread Chris Rebert
Changes by Chris Rebert : Removed file: http://bugs.python.org/file25594/json.rst.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25985/pec34.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25986/pec35.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25987/pec36.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25988/pec37.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25989/pec38.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25990/pec39.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25991/pec40.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25992/pec41.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25993/pec42.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25994/pec43.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25995/pec44.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25996/pec45.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25997/pec46.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

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

2012-06-13 Thread Chris Rebert
Chris Rebert 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

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file25998/pec47.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1054] scriptsinstall target fails in alternate build dir

2012-06-13 Thread Gukas Artunyan
Changes by Gukas Artunyan : Added file: http://bugs.python.org/file26000/pec48.html ___ Python tracker ___ ___ Python-bugs-list mailing list Un

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

2012-06-13 Thread Chris Rebert
Changes by Chris Rebert : Removed file: http://bugs.python.org/file25606/json.rst.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue9679] unicode DNS names in urllib, urlopen

2012-06-13 Thread Chris Rebert
Changes by Chris Rebert : -- nosy: +cvrebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue4442] document immutable type subclassing via __new__

2012-06-13 Thread Chris Rebert
Changes by Chris Rebert : -- nosy: +cvrebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue14599] Windows test_import failure thanks to ImportError.path

2012-06-13 Thread Roumen Petrov
Roumen Petrov 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 buildbot use path with length 5

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

2012-06-13 Thread Ronald Oussoren
Ronald Oussoren 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 reports. This is not

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

2012-06-13 Thread Alexander Belopolsky
Alexander Belopolsky 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, tzinfo=timezone.utc).isoformat('T')) 200

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

2012-06-13 Thread Alexander Belopolsky
Alexander Belopolsky 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 3.4

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

2012-06-13 Thread R. David Murray
R. David Murray 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. -- ___ Python tra

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

2012-06-13 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Bumping priority to get this in before beta. -- priority: normal -> high ___ Python tracker ___ ___

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

2012-06-13 Thread Alexander Belopolsky
Alexander Belopolsky 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: http://bugs.python.org/file26002/issue1667546.diff __

[issue15060] docs: socket typo

2012-06-13 Thread Roundup Robot
Roundup Robot 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': Issue #15060: fix typo in socket

[issue15060] docs: socket typo

2012-06-13 Thread Sandro Tosi
Sandro Tosi 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

  1   2   >