[issue11508] Virtual Interfaces cause uuid._find_mac to raise a ValueError under Linux

2013-11-26 Thread Zachary Ware
Zachary Ware added the comment: This seems to have broken 64-bit Windows: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/3472/steps/test/logs/stdio http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.3/builds/1288/steps/test/logs/stdio http://buildbot.p

[issue19662] smtpd.py should not decode utf-8

2013-11-26 Thread R. David Murray
R. David Murray added the comment: As I said, the decoding needs to be controlled by a switch (presumably a keyword argument to SMTPServer) that defaults to the present (incorrect) behavior. -- ___ Python tracker

[issue19662] smtpd.py should not decode utf-8

2013-11-26 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue18983] Specify time unit for timeit CLI

2013-11-26 Thread Julian Gindi
Julian Gindi added the comment: I created a patch that allows users to specify a time unit output using the "-u" flag. Example usage: python -m timeit -u "msec" '"-".join(str(n) for n in range(100))' >> 1 loops, best of 3: 0.156 msec per loop python -m timeit -u "sec" '"-".join(str(n) for

[issue19788] Always run kill_python(_d).exe when (re-)building on Windows

2013-11-26 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the test, Tim :) -- assignee: -> zach.ware resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue19788] Always run kill_python(_d).exe when (re-)building on Windows

2013-11-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset ca600150205a by Zachary Ware in branch '3.3': Issue #19788: kill_python(_d).exe is now run as a PreBuildEvent on the http://hg.python.org/cpython/rev/ca600150205a New changeset 2c1e041cb504 by Zachary Ware in branch 'default': Issue #19788: kill_pyt

[issue12014] str.format parses replacement field incorrectly

2013-11-26 Thread Benjamin Peterson
Benjamin Peterson added the comment: Should be generally patched up in 3.4. Try it out. -- nosy: +benjamin.peterson ___ Python tracker ___ ___

[issue19729] [regression] str.format sublevel format parsing broken in Python 3.3.3

2013-11-26 Thread Benjamin Peterson
Benjamin Peterson added the comment: Sorry about that. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue19729] [regression] str.format sublevel format parsing broken in Python 3.3.3

2013-11-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset bab7dc2ffc16 by Benjamin Peterson in branch '3.3': fix format spec recursive expansion (closes #19729) http://hg.python.org/cpython/rev/bab7dc2ffc16 New changeset e27684eed3b6 by Benjamin Peterson in branch 'default': merge 3.3 (#19729) http://hg.py

[issue19802] socket.SO_PRIORITY is missing

2013-11-26 Thread Vajrasky Kok
Vajrasky Kok added the comment: I agree. The test is not that meaningful. But hey, we have the test that tests this kind of constant. http://hg.python.org/cpython/rev/513da56d28de -- nosy: +vajrasky ___ Python tracker

[issue19804] test_uuid failing on 32-bit Windows Vista

2013-11-26 Thread Tim Peters
New submission from Tim Peters: Using current default branch: FAIL: test_find_mac (test.test_uuid.TestUUID) -- Traceback (most recent call last): File "C:\Code\Python\lib\test\test_uuid.py", line 378, in test_find_mac self

[issue19804] test_uuid failing on 32-bit Windows Vista

2013-11-26 Thread Tim Peters
Tim Peters added the comment: Seeing the same failure on a buildbot: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/3474/steps/test/logs/stdio -- ___ Python tracker ___

[issue19805] Revise FAQ Dictionary: consistent key order item

2013-11-26 Thread Graham Wideman
New submission from Graham Wideman: FAQ entry: http://docs.python.org/3/faq/programming.html#how-can-i-get-a-dictionary-to-display-its-keys-in-a-consistent-order claims that there's no way for a dictionary to return keys in a consistent order. However, there's OrderedDict which should probably b

[issue19805] Revise FAQ Dictionary: consistent key order item

2013-11-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 22e514e41fac by Benjamin Peterson in branch '3.3': recommend OrderedDict for this FAQ (closes #19805) http://hg.python.org/cpython/rev/22e514e41fac New changeset ddbcb86afbdc by Benjamin Peterson in branch 'default': merge 3.3 (#19805) http://hg.pyt

[issue19792] pathlib does not support symlink in Windows XP

2013-11-26 Thread Brian Curtin
Brian Curtin added the comment: If users want to do that hack to get symlinks on XP, they should probably just manage doing so on their own. It's not something we'd take care of installing and running via our installer, so I don't think pathlib should be changed to work for it. -- __

[issue19806] smtpd crashes when a multi-byte UTF-8 sequence is split between consecutive data packets

2013-11-26 Thread Petri Lehtinen
New submission from Petri Lehtinen: >From Illirgway, https://github.com/akheron/cpython/pull/2: Fix utf-8 bug, when symbol byte chain splits on 2 tcp-packets: error: uncaptured python exception, closing channel (:'utf-8' codec can't decode byte 0xd0 in position 1474: unexpected end of data [/

[issue19804] test_uuid failing on 32-bit Windows Vista

2013-11-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset e5b7f140ae30 by Serhiy Storchaka in branch '2.7': Skip test_find_mac on Windows (issue #19804). http://hg.python.org/cpython/rev/e5b7f140ae30 New changeset dfadce7635ce by Serhiy Storchaka in branch '3.3': Skip test_find_mac on Windows (issue #19804

[issue11508] Virtual Interfaces cause uuid._find_mac to raise a ValueError under Linux

2013-11-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Zachary for your report. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue19792] pathlib does not support symlink in Windows XP

2013-11-26 Thread Vajrasky Kok
Vajrasky Kok added the comment: I agree we should not go "extra mile" to add feature for Windows XP, a 12 year old software and soon to be "put down" a couple months forward. But in this case, Antoine goes "extra mile" to prevent symbolic link support in Windows XP. And it's not just him that

[issue19804] test_uuid failing on 32-bit Windows Vista

2013-11-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Tim for your report. -- components: +Tests resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue11508] Virtual Interfaces cause uuid._find_mac to raise a ValueError under Linux

2013-11-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed in issue19804. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue19780] Pickle 4 frame headers optimization

2013-11-26 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: Serhiy, I am not able to reproduce your results. I don't get any significant performance improvements with your patch. 22:34:03 [ ~/PythonDev/cpython-baseline ]$ ./python.exe -m timeit "import pickle" "with open('test.pickle4', 'rb', buffering=0) as f: p

[issue19791] test_pathlib should use can_symlink or skip_unless_symlink from test.support

2013-11-26 Thread Vajrasky Kok
Vajrasky Kok added the comment: > How about we defer this to Python 3.5, to make merging easier ? Sure. -- versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ _

[issue19807] calculation of standard math

2013-11-26 Thread chili
New submission from chili: Calculation of print (162-159.9) (IDLE and source script) returns 2.0943 I don“t make my financial calculation with this command :) -- components: Regular Expressions messages: 204561 nosy: chili, ezio.melotti, mrabarnett priority: normal severity:

[issue19807] calculation of standard math returns incorrect value

2013-11-26 Thread chili
Changes by chili : -- title: calculation of standard math -> calculation of standard math returns incorrect value ___ Python tracker ___ __

<    1   2