[issue16203] Proposal: add re.fullmatch() method

2013-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Committed with additional test (re.fullmatch('a+', 'ab')) which proves that change for SRE_OP_REPEAT_ONE are needed. Thank you Matthew for your contribution. -- ___ Python tracker

[issue16203] Proposal: add re.fullmatch() method

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 89dfa2671c83 by Serhiy Storchaka in branch 'default': Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, http://hg.python.org/cpython/rev/89dfa2671c83 -- ___ Python tracker

[issue16203] Proposal: add re.fullmatch() method

2013-11-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13592] repr(regex) doesn't include actual regex

2013-11-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue13592] repr(regex) doesn't include actual regex

2013-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Hugo for your contribution. Thank you Thomas and Ezio for your reviews and suggestions. -- ___ Python tracker ___ _

[issue19308] Tools/gdb/libpython.py does not support GDB linked against Python 3

2013-11-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: The buildbots look ok now. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mai

[issue13592] repr(regex) doesn't include actual regex

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8c00677da6c0 by Serhiy Storchaka in branch 'default': Issue #13592: Improved the repr for regular expression pattern objects. http://hg.python.org/cpython/rev/8c00677da6c0 -- nosy: +python-dev ___ Python

[issue19739] Legit compiler warnings in new pickle code on 32-bit Windows

2013-11-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've fixed the first 4 in 458340ed0606 and the signed/unsigned warning in c3fd79b17983. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue19641] Add audioop.byteswap()

2013-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I have committed simplified patch, without optimization for 1-byte samples. -- assignee: -> serhiy.storchaka resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue19641] Add audioop.byteswap()

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset fbebc90abcd1 by Serhiy Storchaka in branch 'default': Issue #19641: Added the audioop.byteswap() function to convert big-endian http://hg.python.org/cpython/rev/fbebc90abcd1 -- nosy: +python-dev ___ Pytho

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Mark Dickinson added the comment: > PyOS_string_to_double() is a public function. The check is needed in case > 3rd party code uses it without extra checks. In that case, I'd suggest something more like my modifications to dtoa.c. By the time that you end up with a negative 'e', all sorts of

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Christian Heimes
Christian Heimes added the comment: PyOS_string_to_double() is a public function. The check is needed in case 3rd party code uses it without extra checks. -- ___ Python tracker

[issue17810] Implement PEP 3154 (pickle protocol 4)

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3e16c8c34e69 by Christian Heimes in branch 'default': Issue #17810: Fixed NULL check in _PyObject_GetItemsIter() http://hg.python.org/cpython/rev/3e16c8c34e69 -- ___ Python tracker

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Mark Dickinson added the comment: And if you limit the length to a little less than INT_MAX, I don't think you need to modify dtoa.c at all. -- ___ Python tracker ___ __

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Mark Dickinson added the comment: Ah, sorry; I misunderstood. Yep, that looks like a fine solution to me. -- ___ Python tracker ___ _

[issue15204] Deprecate the 'U' open mode

2013-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Victor and Ezio for the reviews. -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue17810] Implement PEP 3154 (pickle protocol 4)

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset a02adfb3260a by Christian Heimes in branch 'default': Issue #17810: Add two missing error checks to save_global http://hg.python.org/cpython/rev/a02adfb3260a -- ___ Python tracker

[issue15204] Deprecate the 'U' open mode

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 70bd6f7e013b by Serhiy Storchaka in branch 'default': Issue #15204: Deprecated the 'U' mode in file-like objects. http://hg.python.org/cpython/rev/70bd6f7e013b -- nosy: +python-dev ___ Python tracker

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Christian Heimes
Christian Heimes added the comment: Mark, I was talking about the attached "fix" (or more a workaround). You are right, my initial patch wasn't a good idea. -- Added file: http://bugs.python.org/file32812/float_overflow.patch ___ Python tracker

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Mark Dickinson added the comment: Christian: I don't think this code is safe: -nd0 = nd = s - s1; +tmp = s - s1; +nd0 = nd = Py_SAFE_DOWNCAST(tmp, Py_SSIZE_T, int); The result of the Py_SAFE_DOWNCAST could be almost anything, and in particular could be negative. It would take a c

[issue17810] Implement PEP 3154 (pickle protocol 4)

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset c54becd69805 by Christian Heimes in branch 'default': Issue #17810: return -1 on error http://hg.python.org/cpython/rev/c54becd69805 -- ___ Python tracker

[issue17810] Implement PEP 3154 (pickle protocol 4)

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset d719975f4d25 by Christian Heimes in branch 'default': Issue #17810: Add NULL check to save_frozenset http://hg.python.org/cpython/rev/d719975f4d25 -- ___ Python tracker

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Mark Dickinson added the comment: Whoops; half-baked patch. This one's better (but still not as tested as I'd like). -- Added file: http://bugs.python.org/file32811/limit_dtoa_string.patch ___ Python tracker

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Changes by Mark Dickinson : Removed file: http://bugs.python.org/file32810/limit_dtoa_string.patch ___ Python tracker ___ ___ Python-bugs-list

[issue19713] Deprecate various things in importlib thanks to PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19714] Add tests for importlib.machinery.WindowsRegistryFinder

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19711] add test for changed portions after reloading a namespace package

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19712] Make sure there are exec_module tests for _LoaderBasics subclasses

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19710] Make sure documentation for PEP 451 is finished

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19707] Check if unittest.mock needs updating for PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19708] Check pkgutil for anything missing for PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19739] Legit compiler warnings in new pickle code on 32-bit Windows

2013-11-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: Yes, there is actually a bug which shows up as errors in the tests. I'm currently testing a patch for it. -- ___ Python tracker ___ ___

[issue19706] Check if inspect needs updating for PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19703] Upate pydoc to PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19705] Update test.test_namespace_pkgs to PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19739] Legit compiler warnings in new pickle code on 32-bit Windows

2013-11-23 Thread Tim Peters
New submission from Tim Peters: 1>..\Modules\_pickle.c(710): warning C4293: '>>' : shift count negative or too big, undefined behavior 1>..\Modules\_pickle.c(711): warning C4293: '>>' : shift count negative or too big, undefined behavior 1>..\Modules\_pickle.c(712): warning C4293: '>>' : shift

[issue19701] Update multiprocessing for PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Mark Dickinson added the comment: > So size_t should be used instead ("s - s1" is unsigned, s >= s1). That was one of my original thoughts, but the size_t would then creep into all the exponent calculations, requiring fairly substantial changes throughout the code. That's not something I'd wa

[issue19704] Update test.test_threaded_import to PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19702] Update pickle to PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19697] refactor pythonrun.c to make use of specs (__main__.__spec__)

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19698] Implement _imp.exec_builtin and exec_dynamic

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue11406] There is no os.listdir() equivalent returning generator instead of list

2013-11-23 Thread Gregory P. Smith
Gregory P. Smith added the comment: For reference the current state of things for this is the proposal in: https://mail.python.org/pipermail/python-dev/2013-May/126196.html With a prototype using a ctypes based implementation as proof of concept in https://github.com/benhoyt/scandir. A combin

[issue19700] Update runpy for PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19699] Update zipimport for PEP 451

2013-11-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Mark Dickinson added the comment: I'm thinking of something like the attached patch, which limits nd to 2 billion, comfortably within the range of int on machines that Python's likely to meet. (If anyone's worried about machines with ints smaller than 32 bits, we could add a configure check f

[issue15204] Deprecate the 'U' open mode

2013-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Updated patch addresses Ezio's comments. -- Added file: http://bugs.python.org/file32809/deprecate-U-mode_3.patch ___ Python tracker ___ _

[issue1195571] simple callback system for Py_FatalError

2013-11-23 Thread Gregory P. Smith
Gregory P. Smith added the comment: i obviously didn't add this to 3.3, unassigning to reflect the attention it (isn't) currently getting. sorry! -- assignee: gregory.p.smith -> ___ Python tracker _

[issue16134] Add support for RTMP schemes to urlparse

2013-11-23 Thread Gregory P. Smith
Gregory P. Smith added the comment: i'd like to see a proposed change against the 3.4 standard library for this with tests. -- assignee: gregory.p.smith -> ___ Python tracker _

[issue13788] os.closerange optimization

2013-11-23 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- assignee: gregory.p.smith -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Mark Dickinson added the comment: So I think the right approach here is to signal an error if the input string is longer than INT_MAX. The the safe downcast really *is* a safe downcast. -- ___ Python tracker

[issue19545] time.strptime exception context

2013-11-23 Thread Claudiu.Popa
Changes by Claudiu.Popa : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue10712] 2to3 fixer for deprecated unittest method names

2013-11-23 Thread Ezio Melotti
Ezio Melotti added the comment: Committed in 3.4, I'll backport it to 2.7/3.3 later. Thanks for the review! -- stage: patch review -> commit review ___ Python tracker ___ ___

[issue10712] 2to3 fixer for deprecated unittest method names

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset cc0fc4e9b494 by Ezio Melotti in branch 'default': #10712: 2to3 has a new "asserts" fixer that replaces deprecated names of unittest methods. http://hg.python.org/cpython/rev/cc0fc4e9b494 -- nosy: +python-dev ___

[issue10712] 2to3 fixer for deprecated unittest method names

2013-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue19638] dtoa: conversion from '__int64' to 'int', possible loss of data

2013-11-23 Thread Mark Dickinson
Changes by Mark Dickinson : -- assignee: mark.dickinson -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue10712] 2to3 fixer for deprecated unittest method names

2013-11-23 Thread Ezio Melotti
Ezio Melotti added the comment: Here is an updated patch that is the same as my first patch but also includes the documentation provided by Berker (thanks!). -- Added file: http://bugs.python.org/file32808/issue10712-2.diff ___ Python tracker

[issue19557] ast - docs for every node type are missing

2013-11-23 Thread anatoly techtonik
anatoly techtonik added the comment: http://stackoverflow.com/questions/8370132/what-syntax-is-represented-by-an-extslice-node-in-pythons-ast -- ___ Python tracker ___ __

[issue13592] repr(regex) doesn't include actual regex

2013-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: * re.UNICODE omitted for string patterns. * Long patterns are truncated. -- Added file: http://bugs.python.org/file32807/issue13592_add_repr_to_regex_v4.patch ___ Python tracker

[issue19639] Improve re match objects display

2013-11-23 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report and the patch! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue19639] Improve re match objects display

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset bbfc559f7190 by Ezio Melotti in branch 'default': #19639: update the repr of the match objects in the docs. Patch by Claudiu Popa. http://hg.python.org/cpython/rev/bbfc559f7190 -- nosy: +python-dev ___

[issue19655] Replace the ASDL parser carried with CPython

2013-11-23 Thread anatoly techtonik
anatoly techtonik added the comment: +1 for initiative, points that are nice to be addressed are below. 1. "Python 3.4 with modern idioms" - too Python-specific code raises the barrier. I'd prefer simplicity and portability over modernism. Like how hard is it to port the parser into JS with Py

[issue13633] Automatically convert character references in HTMLParser

2013-11-23 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the reviews! -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue17810] Implement PEP 3154 (pickle protocol 4)

2013-11-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've now committed Alexandre's latest work (including the FRAME and MEMOIZE opcodes). -- resolution: -> fixed stage: patch review -> committed/rejected ___ Python tracker ___

[issue17810] Implement PEP 3154 (pickle protocol 4)

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 992ef855b3ed by Antoine Pitrou in branch 'default': Issue #17810: Implement PEP 3154, pickle protocol 4. http://hg.python.org/cpython/rev/992ef855b3ed -- nosy: +python-dev ___ Python tracker

[issue13633] Automatically convert character references in HTMLParser

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1575f2dd08c4 by Ezio Melotti in branch 'default': #13633: Added a new convert_charrefs keyword arg to HTMLParser that, when True, automatically converts all character references. http://hg.python.org/cpython/rev/1575f2dd08c4 -- nosy: +pytho

[issue19668] Add support of the cp1125 encoding

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 355d8950f574 by Serhiy Storchaka in branch 'default': Fixed incorrectly applying a patch for issue19668. http://hg.python.org/cpython/rev/355d8950f574 -- ___ Python tracker

[issue19738] pytime.c loses precision under Windows

2013-11-23 Thread Antoine Pitrou
New submission from Antoine Pitrou: Under Windows, GetSystemTimeAsFileTime has a 100 ns resolution, but pygettimeofday stores it in a timeval which only has microsecond resolution. As a consequence, some precision is lost under Windows (which shows e.g. in time.time() results). -- com

[issue19308] Tools/gdb/libpython.py does not support GDB linked against Python 3

2013-11-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've committed updated patches to all 3 branches (+ some later fixups). Gonna wait for the buildbots' outcome. -- resolution: -> fixed stage: patch review -> committed/rejected ___ Python tracker

[issue19715] test_touch_common failure under Windows

2013-11-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Antoine, FYI, with the current code test_pathlib passed 500 times in a > row on my box. Success :-) This has been a tedious one :-) I'm gonna open a separate issue for the precision loss in pytime.c, then. -- resolution: -> fixed stage: needs patch

[issue19715] test_touch_common failure under Windows

2013-11-23 Thread Tim Peters
Tim Peters added the comment: Antoine, FYI, with the current code test_pathlib passed 500 times in a row on my box. Success :-) -- ___ Python tracker ___ __

[issue19668] Add support of the cp1125 encoding

2013-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks all. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue19579] test_asyncio: test__run_once timings should be relaxed

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 085091cb6e4c by Guido van Rossum in branch 'default': Relax timing even more, hopefully again fixes issue 19579. http://hg.python.org/cpython/rev/085091cb6e4c -- ___ Python tracker

[issue19308] Tools/gdb/libpython.py does not support GDB linked against Python 3

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset ef4636faf8bd by Antoine Pitrou in branch '2.7': Issue #19308: fix the gdb plugin on gdbs linked with Python 3 http://hg.python.org/cpython/rev/ef4636faf8bd -- ___ Python tracker

[issue19668] Add support of the cp1125 encoding

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset d0fd68ef1aa9 by Serhiy Storchaka in branch 'default': Issue #19668: Added support for the cp1125 encoding. http://hg.python.org/cpython/rev/d0fd68ef1aa9 -- nosy: +python-dev ___ Python tracker

[issue19737] Documentation of globals() and locals() should be improved

2013-11-23 Thread R. David Murray
R. David Murray added the comment: We've tried improving the locals docs several times. Modifying it is not "safe", in the sense that what happens when you do is not defined by the language. Which locals docs were you looking at? I agree that 'representing' is not as clear as would be optima

[issue19579] test_asyncio: test__run_once timings should be relaxed

2013-11-23 Thread STINNER Victor
STINNER Victor added the comment: Oh, the problem is now in the opposite direction... Windows clocks don't look to be reliable or the buildbot is very busy :-/ http://buildbot.python.org/all/builders/x86%20Windows7%203.x/builds/7586/steps/test/logs/stdio ===

[issue19634] test_strftime.test_y_before_1900_nonwin() fails on AIX and Solaris

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset e73683514b4d by Victor Stinner in branch 'default': Isue #19634: test_y_before_1900() is expected to fail on Solaris http://hg.python.org/cpython/rev/e73683514b4d -- ___ Python tracker

[issue19737] Documentation of globals() and locals() should be improved

2013-11-23 Thread Zahari Dim
New submission from Zahari Dim: The globals() notification states: Return a dictionary representing the current global symbol table.[...] This doc and the fact that globals() is called as a function made me think that globals() returns a copy of the global namespace dict, rather than an object

[issue19308] Tools/gdb/libpython.py does not support GDB linked against Python 3

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 752db82b7933 by Antoine Pitrou in branch '3.3': Issue #19308: fix the gdb plugin on gdbs linked with Python 3 http://hg.python.org/cpython/rev/752db82b7933 -- ___ Python tracker

[issue19308] Tools/gdb/libpython.py does not support GDB linked against Python 3

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9f2a0043396b by Antoine Pitrou in branch 'default': Issue #19308: fix the gdb plugin on gdbs linked with Python 3 http://hg.python.org/cpython/rev/9f2a0043396b -- nosy: +python-dev ___ Python tracker

[issue13592] repr(regex) doesn't include actual regex

2013-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is fixed and simplified patch. -- Added file: http://bugs.python.org/file32806/issue13592_add_repr_to_regex_v3.patch ___ Python tracker

[issue19694] test_venv failing on one of the Ubuntu buildbots

2013-11-23 Thread Larry Hastings
Larry Hastings added the comment: Are you sure the problem is fixed? I still see the same error on the same buildbot. http://buildbot.python.org/all/builders/AMD64%20Ubuntu%20LTS%203.x/builds/3168/steps/test/logs/stdio -- ___ Python tracker

[issue19668] Add support of the cp1125 encoding

2013-11-23 Thread Martin v . Löwis
Martin v. Löwis added the comment: +1 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue19634] test_strftime.test_y_before_1900_nonwin() fails on AIX and Solaris

2013-11-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: This broke OpenIndiana: == ERROR: test_y_before_1900 (test.test_strftime.Y1900Tests) -- Traceback (most recent call last):

[issue19063] Python 3.3.3 encodes emails containing non-ascii data as 7bit

2013-11-23 Thread R. David Murray
R. David Murray added the comment: Yes, I discovered this in testing, but I forgot to file a bug report for it. It should be dealt with in a separate issue. And yes, it should be fixed, since except for the documented on-demand filling out of missing pieces such as MIME borders, the model sh

[issue19713] Deprecate various things in importlib thanks to PEP 451

2013-11-23 Thread Brett Cannon
Brett Cannon added the comment: I do not think we should keep the old APIs around forever, so either we don't care about the obscure use cases or figure out a way to support them. -- ___ Python tracker ___

[issue19736] posixmodule.c: Add flags for statvfs.f_flag to constant list

2013-11-23 Thread Matthias Klose
Changes by Matthias Klose : -- stage: -> patch review type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue19736] posixmodule.c: Add flags for statvfs.f_flag to constant list

2013-11-23 Thread Matthias Klose
New submission from Matthias Klose: the posix module has the statvfs call, but doesn't define any constants used as parameters. add them. -- components: Extension Modules files: statvfs-f_flag-constants.diff keywords: patch messages: 204043 nosy: doko priority: normal severity: normal s

[issue19735] ssl._create_stdlib_context

2013-11-23 Thread Christian Heimes
New submission from Christian Heimes: The second part of #19689. This patch implements _create_stdlib_context() that wrap lots of common code in one function that is private to Python's stdlib. -- components: Library (Lib) files: ssl_create_stdlib_context.patch keywords: patch messages:

[issue13633] Automatically convert character references in HTMLParser

2013-11-23 Thread Ezio Melotti
Ezio Melotti added the comment: New patch attached. -- stage: patch review -> commit review Added file: http://bugs.python.org/file32803/issue13633-2.diff ___ Python tracker ___

[issue19689] ssl.create_default_context()

2013-11-23 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: -> christian.heimes resolution: -> fixed stage: patch review -> committed/rejected status: open -> pending ___ Python tracker ___ ___

[issue19728] PEP 453: enable pip by default in the binary installers

2013-11-23 Thread Martin v . Löwis
Martin v. Löwis added the comment: I agree with Nick; this is really a minor issue and we can resolve it here in the tracker. I missed the place in the PEP where it said that the option should be checked, since it mentions changes to the installers twice, and in "implementation strategy", it d

[issue19689] ssl.create_default_context()

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 63df21e74c65 by Christian Heimes in branch 'default': Issue #19689: Add ssl.create_default_context() factory function. It creates http://hg.python.org/cpython/rev/63df21e74c65 -- nosy: +python-dev ___ Pyt

[issue19734] test_venv.test_with_pip() fails on "AMD64 Ubuntu LTS 3.x" buildbot

2013-11-23 Thread Nick Coghlan
Nick Coghlan added the comment: Interesting, looks like the warnings from issue 19694 *weren't* the cause of the bad return code - something else is failing. I should have some time to investigate tomorrow afternoon, but it will consist of trying to improve the diagnostic output from the tests. I

[issue19063] Python 3.3.3 encodes emails containing non-ascii data as 7bit

2013-11-23 Thread Vajrasky Kok
Vajrasky Kok added the comment: Simpler patch. -- Added file: http://bugs.python.org/file32802/support_8bit_charset_cte_v3.patch ___ Python tracker ___ __

[issue19676] Add the "namereplace" error handler

2013-11-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +ethan.furman, lemburg, ncoghlan, stevenjd ___ Python tracker ___ ___ Python-bugs-list mailing

[issue19730] Clinic fixes: add converters with length, version directive

2013-11-23 Thread Nick Coghlan
Nick Coghlan added the comment: +1 to what Antoine said - keeping the initial iteration internal only actually buys us some time :) -- ___ Python tracker ___

[issue18728] Increased test coverage for filecmp.py

2013-11-23 Thread Eduardo Seabra
Eduardo Seabra added the comment: I've also increased the test coverage of filecmp.py. Don't know if I should merge my patch with Alex.Volkov's patch. I'm uploading it as a separate patch. -- nosy: +Eduardo.Seabra Added file: http://bugs.python.org/file32801/test_filecmp.patch

[issue19728] PEP 453: enable pip by default in the binary installers

2013-11-23 Thread Nick Coghlan
Nick Coghlan added the comment: As far as updating the PEP goes, it's a rare PEP indeed that is implemented exactly according to spec - the integration process almost always uncovers details that don't quite work out the way we thought they would. For minor issues, we usually handle such changes

<    1   2   3   >