[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.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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  utf-16le  '\u0100'*1
2390 (+668%) 18364  encode  utf-16le'\u0100'+'A'*
2324 (+684%) 18219  encode  utf-16le'\u0100'+'\x80'*
2385 (+664%) 18227  encode  utf-16le  '\u8000'*1
2390 (+669%) 18383  encode  utf-16le'\u8000'+'A'*
2390 (+663%) 18232  encode  utf-16le'\u8000'+'\x80'*
2385 (+601%) 16708  encode  utf-16le'\u8000'+'\u0100'*
1601 (-4%)   1542   encode  utf-16le  '\U0001'*1
1209 (+20%)  1448   encode  utf-16le'\U0001'+'A'*
1210 (+20%)  1447   encode  utf-16le'\U0001'+'\x80'*
1209 (+20%)  1446   encode  utf-16le'\U0001'+'\u0100'*
1209 (+20%)  1446   encode  utf-16le'\U0001'+'\u8000'*

3237 (+562%) 21422  encode  utf-16be  'A'*1
3294 (+500%) 19779  encode  utf-16be  '\x80'*1
3290 (+357%) 15036  encode  utf-16be'\x80'+'A'*
2382 (+209%) 7354   encode  utf-16be  '\u0100'*1
2381 (+208%) 7342   encode  utf-16be'\u0100'+'A'*
2377 (+209%) 7347   encode  utf-16be'\u0100'+'\x80'*
2382 (+207%) 7317   encode  utf-16be  '\u8000'*1
2381 (+208%) 7343   encode  utf-16be'\u8000'+'A'*
2376 (+209%) 7343   encode  utf-16be'\u8000'+'\x80'*
2377 (+206%) 7281   encode  utf-16be'\u8000'+'\u0100'*
1598 (-42%)  930encode  utf-16be  '\U0001'*1
1208 (+19%)  1436   encode  utf-16be'\U0001'+'A'*
1208 (+19%)  1436   encode  utf-16be'\U0001'+'\x80'*
1205 (+19%)  1434   encode  utf-16be'\U0001'+'\u0100'*
1205 (+19%)  1433   encode  utf-16be'\U0001'+'\u8000'*

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 variables like this?
- Martin voiced concerns over having a _future_ compatible implementation in 
there with Windows 7 support only.  I thought it cool to have around, since it 
strenghtens the "portability" design of the pattern.
- Names of types/apis.  Am I doing it right?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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, I expected to have it documented at C 
API level too.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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  "u'hello'"
1,17-1,18:  OP  ','
1,19-1,28:  STRING  "ur'hello'"
1,28-1,29:  OP  ','
1,30-1,31:  NAME'b'
1,31-1,38:  STRING  "'hello'"
1,38-1,39:  OP  ','
1,40-1,42:  NAME'br'
1,42-1,49:  STRING  "'hello'"
1,49-1,50:  NEWLINE '\n'
2,0-2,0:ENDMARKER   ''

$ python3.3 -m tokenize <<<"'hello', u'hello', ur'hello', b'hello', br'hello', 
rb'hello'"
1,0-1,7:STRING "'hello'"  
1,7-1,8:OP ','
1,9-1,17:   STRING "u'hello'" 
1,17-1,18:  OP ','
1,19-1,28:  STRING "ur'hello'"
1,28-1,29:  OP ','
1,30-1,31:  NAME   'b'
1,31-1,38:  STRING "'hello'"  
1,38-1,39:  OP ','
1,40-1,49:  STRING "br'hello'"
1,49-1,50:  OP ','
1,51-1,60:  STRING "rb'hello'"
1,60-1,61:  NEWLINE'\n'   
2,0-2,0:ENDMARKER  ''

--
components: Library (Lib)
messages: 162705
nosy: flox
priority: normal
severity: normal
status: open
title: bytes literals erroneously tokenized
type: behavior
versions: Python 2.7, Python 3.2, Python 3.3

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 doesn't make 
sense to skip ahead with part of the conclusion. (I may even end up splitting 
that PEP into two pieces)

I'll also look into the embedding API, to see if/how embedding applications can 
fully control sys.path initialisation.

Python has survived without this feature for the last couple of decades, 
there's no need to be hasty in adding it now.

--
assignee:  -> ncoghlan
versions: +Python 3.4

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: Documentation
files: dictnotes.patch
keywords: patch
messages: 162709
nosy: Mark.Shannon, docs@python
priority: normal
severity: normal
status: open
title: dictnotes.txt is out of date
type: enhancement
versions: Python 3.3
Added file: http://bugs.python.org/file25947/dictnotes.patch

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 variety of applications).

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 macro for clarity).

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.

--
components: Library (Lib)
keywords: easy
messages: 162712
nosy: brett.cannon
priority: deferred blocker
severity: normal
status: open
title: Have imp.cache_from_source() raise NotImplementedError when cache tag 
not available
versions: Python 3.3

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 caching should be disabled”: isn’t that the 
job of sys.dont_write_bytecode?

(The difference that I see is that sys.impl.cache_tag is defined by the VM and 
dont_write_bytecode by each interpreter invocation; I was expecting VMs that 
never want to write bytecode to just always set dont_write_bytecode to False, 
i.e. make -B redundant.)

--
nosy: +eric.araujo

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 should be moved to errors.c and renamed 
_PyErr_FetchStopIterationValue.

--
nosy: +Mark.Shannon

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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_exeext
configure:13701: $? = 137
configure: program exited with status 137
configure: failed program was:
| /* confdefs.h */
| #define _GNU_SOURCE 1
...

So it didn't actually run the test, but immediately failed because libintl.so.8 
is broken (or something involving libintl.so.8).

The surprising part is that this starts with the test for PTHREAD_SCOPE_SYSTEM. 

I cannot provide an explanation for that - you will have to research the source 
of the problem yourself.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 the manager process shutdown cleanly.

--
Added file: http://bugs.python.org/file25948/sys_exit.patch

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 function mpd_qdivint checks the condition "mpd_isinfinite(a) && 
mpd_isinfinite(b)" while mpd_qrem does not. I wonder if this is necessary in 
mpd_qrem. The source code is included in the attachment. Hope it helps.

--
components: Library (Lib)
files: mpdecimal_clone.txt
messages: 162717
nosy: Ken.Cheung
priority: normal
severity: normal
status: open
title: Potential Bugs in mpd_qdivint and mpd_qrem
type: behavior
versions: Python 3.3
Added file: http://bugs.python.org/file25949/mpdecimal_clone.txt

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 function dlpvalloc performs a bitwise operation at return while dlvalloc 
does not. I wonder if this is necessary in dlvalloc. The source code is 
included in the attachment. Hope it helps.

--
components: Library (Lib)
files: dlmalloc_clone.txt
messages: 162718
nosy: Ken.Cheung
priority: normal
severity: normal
status: open
title: Potential Bugs in dlpvalloc and dlvalloc
type: behavior
versions: Python 3.3
Added file: http://bugs.python.org/file25950/dlmalloc_clone.txt

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

The two functions perform different in the else if condition. I wonder this is 
due to functionality requirement or a bug. The source code is included in the 
attachment. Hope it helps.

--
components: Library (Lib)
files: mpdecimal_clone 2.txt
messages: 162719
nosy: Ken.Cheung
priority: normal
severity: normal
status: open
title: Potential Bug in mpd_qresize and mpd_qresize_zero
type: behavior
versions: Python 3.3
Added file: http://bugs.python.org/file25951/mpdecimal_clone 2.txt

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 domain name.  

urllib2 function which return a "url" value (such as "geturl()") should apply 
"encodings.idna.ToUnicode" to each label of the domain name.

Note that in both cases, the conversion function must be applied to each label 
(field between "."s) of the domain name only.  Applying it to the entire domain 
name or the entire URL will not work. 

If there are future changes to domain syntax, those should go into 
"encodings.idna", which is the proper library for domain syntax issues.

--
nosy: +nagle

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 rejected 
out of hand, especially if someone can provide a real web site where it would 
be helpful.

--
versions: +Python 3.3 -Python 3.2

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 54 and since build tree is detected and to 
this path code adds  'build'. For installed python  code will use TEMP 
environment variable.
The test are run in subdir test_python_${PID} and depending of PID the path is 
with different length. Note this.

So try to reproduce with installed python and TEMP set to path like this 
C:\12345678\12345678\12345678\12345678\12345678\12345678 and run test. The 
limit of 260(-1) will be reached and FileNotFoundError will be raised.
The default value of TEMP is to short to trigger error.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 yet a patch to the real configure file because I'd like to add 
support for automatically picking the compiler inside Xcode.app when the user 
has Xcode 4 installed without the unix tools (e.g. on an new OSX 10.7 where the 
user has installed Xcode from the appstore without further actions).

--
Added file: http://bugs.python.org/file26001/configure.ac

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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'))
2000-01-01T00:00:00+00:00

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 doc; Patch by anatoly techtonik
http://hg.python.org/cpython/rev/4d755a711823

New changeset 29fb36928433 by Sandro Tosi in branch 'default':
Issue #15060: merge with 3.2
http://hg.python.org/cpython/rev/29fb36928433

--
nosy: +python-dev

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



  1   2   >