[issue19202] Additions to function docs: reduce and itertools.

2013-10-12 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: docs@python -> rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue19202] Additions to function docs: reduce and itertools.

2013-10-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: Almost all of these make the docs worse and should not be applied. The purpose of the "equivalent" code is simply to make the documentation clearer, not to show all the ways it could have been done. I do think Georg's reduce() equivalent should be added be

[issue19201] Add 'x' mode to lzma.open()

2013-10-12 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- components: +Library (Lib) title: Add 'x' mode to lzma.open -> Add 'x' mode to lzma.open() ___ Python tracker ___

[issue19222] Add 'x' mode to gzip.open()

2013-10-12 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- components: +Library (Lib) stage: -> patch review title: gzip and 'x' mode open -> Add 'x' mode to gzip.open() versions: -Python 3.3 ___ Python tracker

[issue19223] Add 'x' mode to bz2.open()

2013-10-12 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- components: +Library (Lib) stage: -> patch review title: bz2 and 'x' mode open -> Add 'x' mode to bz2.open() versions: -Python 3.3 ___ Python tracker __

[issue19230] Reimplement the keyword module in C

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: IMO this should be rejected. Failure to improve startup time + more complicated maintenance. -- ___ Python tracker ___

[issue19205] Don't import re and sysconfig in site.py

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: Christian, the test is failing on Snow Leopard: == FAIL: test_startup_imports (test.test_site.StartupImportTests) -- Tracebac

[issue12853] global name 'r' is not defined in upload.py

2013-10-12 Thread Esa Peuha
Esa Peuha added the comment: > so I don't know where the "global name 'r' is not defined" message came from. It came from Python 2.7. There are two separate bugs here, one in 3.x and the other in 2.7: the 3.x bug has to do with bytes/string separation, while the 2.7 bug is that result was chan

[issue19205] Don't import re and sysconfig in site.py

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset a57dfbba91f9 by Christian Heimes in branch 'default': Issue #19205: add debugging output for failing test on Snow Leopard http://hg.python.org/cpython/rev/a57dfbba91f9 -- ___ Python tracker

[issue12413] make faulthandler dump traceback of child processes

2013-10-12 Thread Richard Oudkerk
Changes by Richard Oudkerk : -- nosy: +sbt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue19227] test_multiprocessing_xxx hangs under Gentoo buildbots

2013-10-12 Thread Richard Oudkerk
Richard Oudkerk added the comment: > I'm already confused by the fact that the test is named > test_multiprocessing_spawn and the error is coming from a module named > popen_fork...) popen_spawn_posix.Popen is a subclass of popen_fork.Popen. -- ___

[issue19230] Reimplement the keyword module in C

2013-10-12 Thread Christian Heimes
Christian Heimes added the comment: Here is a simpler patch that directly uses the grammar definition to create a list of keywords. It completely removes the necessity of a script. -- components: +Extension Modules stage: -> patch review Added file: http://bugs.python.org/file32058/key

[issue19230] Reimplement the keyword module in C

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: -1 again. We shouldn't gratuitously convert Python code to C code. -- ___ Python tracker ___ ___ Pyt

[issue19230] Reimplement the keyword module in C

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: Well, combined with the fact that it gets rid of a manual regeneration step (that is easy to forget, since adding a keyword is not done very often) I think it's a net gain. The same could be done with the "token" module BTW. -- nosy: +georg.brandl

[issue19230] Reimplement the keyword module in C

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Well, combined with the fact that it gets rid of a manual regeneration step > (that is easy to forget, since adding a keyword is not done very often) I > think it's a net gain. If it needs to be automated it can be added to the Makefile... -- _

[issue13203] Doc: say id() is only useful for existing objects

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: Suggestion attached. -- keywords: +patch Added file: http://bugs.python.org/file32059/id_unique.diff ___ Python tracker ___ __

[issue19231] ctype cant's use printf

2013-10-12 Thread FreedomKnight
New submission from FreedomKnight: the code is simple, so i paste all of mycode #!/usr/bin/env python3 from ctypes import * cdll.LoadLibrary("libc.so.6") libc = CDLL("libc.so.6") libc.printf("hello\n") result: h expect result: hello plateform: fedora 19 x64 python3 (3.3.2

[issue19232] Speed up _decimal import

2013-10-12 Thread Stefan Krah
New submission from Stefan Krah: As discussed on python-dev, importing _decimal at the bottom of decimal.py is about 9x slower than importing _decimal directly. -- assignee: skrah components: Extension Modules messages: 199553 nosy: skrah priority: normal severity: normal stage: needs pa

[issue19231] ctype cant's use printf

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: In Python 3, "hello\n" is a Unicode string. printf() expects a byte string, so you should use b"hello\n" (or s.encode() for string object named "s"). -- nosy: +georg.brandl resolution: -> invalid status: open -> closed __

[issue19232] Speed up _decimal import

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: I proposed something similar for issue #19229. -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue19232] Speed up _decimal import

2013-10-12 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue19230] Reimplement the keyword module in C

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: > If it needs to be automated it can be added to the Makefile... I tested keyword_grammar.patch on a fresh Python source code (make distclean; ./configure --with-pydebug; make): I can compile Python. I don't understand what should be automated? This patch does

[issue13203] Doc: say id() is only useful for existing objects

2013-10-12 Thread Ezio Melotti
Ezio Melotti added the comment: LGTM + created and deleted during execution of the ``id()`` If you want to be more accurate you could say "before and after" instead of "during". -- ___ Python tracker ___

[issue19232] Speed up _decimal import

2013-10-12 Thread Eric V. Smith
Eric V. Smith added the comment: Remember that one reason for importing the C version at the bottom of the python version is so that alternate implementations (PyPy, IronPython, Jython) could provide partial versions of the C (or equivalent) versions. By importing after the Python version, the

[issue19232] Speed up _decimal import

2013-10-12 Thread Stefan Krah
Changes by Stefan Krah : -- keywords: +patch Added file: http://bugs.python.org/file32060/issue19232.diff ___ Python tracker ___ ___ P

[issue18754] Run Python child processes in isolated mode in the test suite?

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 72b2e7b74307 by Victor Stinner in branch 'default': Close #18754: Run Python child processes in isolated more in the test suite. http://hg.python.org/cpython/rev/72b2e7b74307 -- nosy: +python-dev resolution: -> fixed stage: -> committed/re

[issue18758] Fix internal references in the documentation

2013-10-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch to Sphinx which helped me to search dead internal references. Not all references were fixed by proposed patches. -- Added file: http://bugs.python.org/file32061/sphinx_warn_refs.patch ___ Python tra

[issue19233] test_io.test_interrupted_write_retry_text() hangs on Solaris 10 and FreeBSD 7.2

2013-10-12 Thread STINNER Victor
New submission from STINNER Victor: http://buildbot.python.org/all/builders/x86%20FreeBSD%207.2%203.x/builds/4531/steps/test/logs/stdio [136/380] test_io Timeout (1:00:00)! Thread 0x28401040: File "/usr/home/db3l/buildarea/3.x.bolen-freebsd7/build/Lib/test/test_io.py", line 3215 in check_int

[issue19131] Broken support of compressed AIFC files

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

[issue19232] Speed up _decimal import

2013-10-12 Thread Stefan Krah
Stefan Krah added the comment: Right, let's start collecting objections. :) Mark, Raymond: Would you support the change (__name__ hack and all)? Maciej: Is this approach a problem for PyPy? -- nosy: +fijall, mark.dickinson, rhettinger ___ Python tr

[issue19205] Don't import re and sysconfig in site.py

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: > New changeset a57dfbba91f9 by Christian Heimes in branch 'default': > Issue #19205: add debugging output for failing test on Snow Leopard > http://hg.python.org/cpython/rev/a57dfbba91f9 So the "import re" comes from _osx_support, _osx_support is imported by s

[issue19232] Speed up _decimal import

2013-10-12 Thread Stefan Krah
Changes by Stefan Krah : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19232] Speed up _decimal import

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: If the Python implementation is renamed to _pydecimal, I don't expect it to be used in CPython. I never used _pyio in a real application, only for some tests to debug. I don't think that we need the __name__ = 'decimal' "hack". If you really want to keep it, p

[issue19205] Don't import re and sysconfig in site.py

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9f6ef09f6492 by Christian Heimes in branch 'default': Issue #19205: _osx_support uses the re module all over the place. Omit the test for nw. http://hg.python.org/cpython/rev/9f6ef09f6492 -- ___ Python t

[issue19229] operator.py: move the Python implementation in the else block of try/except ImportError

2013-10-12 Thread Stefan Krah
Stefan Krah added the comment: Using the microbenchmark I get (standard version): ./python -m timeit "import sys; modname='operator'" "__import__(modname); del sys.modules[modname]" 1000 loops, best of 3: 460 usec per loop Victor's version: ./python -m timeit "import sys; modname='operator'"

[issue19232] Speed up _decimal import

2013-10-12 Thread Stefan Krah
Stefan Krah added the comment: I guess if some of the pickling stuff get's rewritten, we can drop __name__. The other thing is that traditionally the types were "decimal.Decimal" etc., so I'm not sure if it is good idea to have "_decimal.Decimal" and "_pydecimal.Decimal". Of course adding __mod

[issue18804] pythorun.c: is_valid_fd() should not duplicate the file descriptor

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: > Did you encounter this in real life? Well, my initial concern was that dup() creates an inheritable file descriptor. It is unlikely that fork() occurs while is_valid_fd() is called, because is_valid_fd() is only called early during Python initialization. Re

[issue18509] CJK decoders should return MBERR_EXCEPTION on PyUnicodeWriter error

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: This is a regression of Python 3.4, so it would be nice to fix it before the Python 3.4 final. -- nosy: +larry priority: normal -> release blocker ___ Python tracker _

[issue19232] Speed up _decimal import

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: > The other thing is that traditionally the types were "decimal.Decimal" > etc., so I'm not sure if it is good idea to have "_decimal.Decimal" and > "_pydecimal.Decimal". Why not renaming the _decimal module to decimal? -- _

[issue19232] Speed up _decimal import

2013-10-12 Thread Stefan Krah
Stefan Krah added the comment: _decimal already lies about its name (for pickling). -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue19221] Upgrade to Unicode 6.3.0

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset cc1e2f9a569a by Ezio Melotti in branch 'default': #19221: update whatsnew entry about UCD version. http://hg.python.org/cpython/rev/cc1e2f9a569a -- ___ Python tracker

[issue12187] subprocess.wait() with a timeout uses polling on POSIX

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: "On BSDs and OS X, you can use kqueue with EVFILT_PROC+NOTE_EXIT to do exactly that. No polling required. Unfortunately there's no Linux equivalent." http://stackoverflow.com/questions/1157700/how-to-wait-for-exit-of-non-children-processes/7477317#7477317 An ex

[issue12187] subprocess.wait() with a timeout uses polling on POSIX

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: On Linux, it possible to watch processes using a netlink socket: http://www.outflux.net/blog/archives/2010/07/01/reporting-all-execs/ Example: http://users.suse.com/~krahmer/exec-notify.c Python binding (written in Cython) for proc connector: http://debathena.m

[issue9548] locale can be imported at startup but relies on too many library modules

2013-10-12 Thread Brett Cannon
Brett Cannon added the comment: Just a quick favour to ask people: please post benchmark numbers of startup_nosite and normal_startup with your patches, otherwise we are taking stabs in the dark that the code complexity being suggested is worth it. -- _

[issue19131] Broken support of compressed AIFC files

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 567241d794bd by Serhiy Storchaka in branch '2.7': Issue #19131: The aifc module now correctly reads and writes sampwidth of http://hg.python.org/cpython/rev/567241d794bd New changeset 863a92cc9e03 by Serhiy Storchaka in branch '3.3': Issue #19131: T

[issue19230] Reimplement the keyword module in C

2013-10-12 Thread Brett Cannon
Brett Cannon added the comment: Is there any change in any benchmark? -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-li

[issue19232] Speed up _decimal import

2013-10-12 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue12187] subprocess.wait() with a timeout uses polling on POSIX

2013-10-12 Thread Charles-François Natali
Charles-François Natali added the comment: Honestly, I think the extra complexity and non-portability isn't worth it. -- ___ Python tracker ___ __

[issue19108] Benchmark runner tries to execute external Python command and fails on error reporting

2013-10-12 Thread Stefan Behnel
Stefan Behnel added the comment: Here's a patch that replaces the current simplistic Python executable command config with a dedicated PythonRuntime config class. That makes it easy to properly pass around the program specific configuration. Part of that is the Python executable path, the Pyth

[issue19233] test_io.test_interrupted_write_retry_text() hangs on Solaris 10 and FreeBSD 7.2

2013-10-12 Thread Charles-François Natali
Charles-François Natali added the comment: I think the problem is that those buildbots are really slow (just look at the second buildbot's backlog), and the signal is delivered before the large buffer is allocated, hence the write() syscall doesn't fail with EINTR. -- nosy: +neologix

[issue9548] locale can be imported at startup but relies on too many library modules

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here normal_startup and startup_nosite wouldn't show a difference (under Linux anyway) because the locale module is only imported for non-interactive streams, AFAICT. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> cl

[issue12187] subprocess.wait() with a timeout uses polling on POSIX

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Honestly, I think the extra complexity and non-portability isn't worth it. That's what I think too. If we want to avoid polling, there's another approach: - fork() a first time - fork() in the first child - exec() in the second child - in the first child, call

[issue8090] PEP 4 should say something about the standard library

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset f7e3f6a53823 by Georg Brandl in branch 'default': PEP 4: convert to reST, update SourceForge -> bugs.python.org, update DeprecationWarning policy http://hg.python.org/peps/rev/f7e3f6a53823 -- nosy: +python-dev resolution: -> fixed stage: n

[issue13203] Doc: say id() is only useful for existing objects

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8525cc1f342f by Georg Brandl in branch '2.7': Closes #13203: add a FAQ section about seemingly duplicate id()s. http://hg.python.org/cpython/rev/8525cc1f342f -- nosy: +python-dev resolution: -> fixed stage: needs patch -> committed/rejected

[issue13203] Doc: say id() is only useful for existing objects

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0d5de993db66 by Georg Brandl in branch '3.3': Closes #13203: add a FAQ section about seemingly duplicate id()s. http://hg.python.org/cpython/rev/0d5de993db66 -- ___ Python tracker

[issue19179] doc bug: confusing table of values

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9aae58596349 by Georg Brandl in branch '2.7': Closes #19179: make table of XML vulnerabilities clearer by using "everyday" booleans and explaining the table beforehand. http://hg.python.org/cpython/rev/9aae58596349 -- _

[issue18758] Fix internal references in the documentation

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: The -n (nitpicky) option to Sphinx should also report missing references. -- ___ Python tracker ___ __

[issue19179] doc bug: confusing table of values

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6b0ca3963ff1 by Georg Brandl in branch '3.3': Closes #19179: make table of XML vulnerabilities clearer by using "everyday" booleans and explaining the table beforehand. http://hg.python.org/cpython/rev/6b0ca3963ff1 -- nosy: +python-dev reso

[issue19202] Additions to function docs: reduce and itertools.

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: What do you think of the two references added to the itertools docs? -- ___ Python tracker ___ ___ Pyt

[issue16355] inspect.getcomments() does not work in the interactive shell

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: "lives in the interactive shell" is not precise; I would prefer "has been defined in ...". -- nosy: +georg.brandl ___ Python tracker ___

[issue18177] Incorect quote marks in code section-headers in PDF version of docs

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: Yes, there is already one or two issues there (e.g. number 1239). -- resolution: -> invalid status: pending -> closed ___ Python tracker ___

[issue19234] socket.fileno() documentation

2013-10-12 Thread Georg Brandl
New submission from Georg Brandl: Original-Nachricht Betreff: [docs] socket.fileno() documentation Datum: Thu, 10 Oct 2013 19:27:35 +0200 Von: Vlado Potisk An: d...@python.org I might be wrong but in my opinion the socket library documentation is not clear enough regarding the

[issue13026] Dis module - documentation of MAKE_FUNCTION

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset b9ab48c491d5 by Georg Brandl in branch '3.3': Closes #13026: fix documentation of MAKE_FUNCTION for 3.x. http://hg.python.org/cpython/rev/b9ab48c491d5 -- nosy: +python-dev resolution: -> fixed stage: needs patch -> committed/rejected status

[issue19234] socket.fileno() documentation

2013-10-12 Thread R. David Murray
R. David Murray added the comment: See also issue 19154. For consistency with the rest of Python it should probably raise ValueError. But at this point it has done what it does for a long time (which is to return what the underlying posix function returns), so we should probably just documen

[issue19235] Add a dedicated subclass for recursion errors

2013-10-12 Thread Elazar Gershuni
New submission from Elazar Gershuni: There's no dedicated StackOverflowErrorException, So there is no way to accurately distinguish a recursion overflow from a general RuntimeError. One cannot use the exception message, since the docs explicitly says that "Exception messages are not part of t

[issue13905] Built-in Types Comparisons should mention rich comparison methods

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9f1e1da820fb by Georg Brandl in branch '2.7': Closes #13905: mention rich-comparison methods in addition to __cmp__ when documenting how to make classes comparable and orderable. http://hg.python.org/cpython/rev/9f1e1da820fb -- nosy: +pytho

[issue19202] Additions to function docs: reduce and itertools.

2013-10-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: The reference from accumulate() to reduce() may be useful. I'm opposed to most of the other equivalents and cross-references. They bloat the docs without adding value. Terry is right in saying that the equivalent for enumerate() is better as a basic loop

[issue15805] Add stdout redirection tool to contextlib

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: Whatsnew: yes please. As for your second point, I assume Raymond wanted to exemplify usage with an "unfortunate" API that prints to stderr with no option to change it. It just turned out that dis() is not one of those APIs. For purposes of print(), you're almo

[issue19202] Additions to function docs: reduce and itertools.

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: I agree. Will prepare a patch to the reduce() doc. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue19202] Additions to function docs: reduce and itertools.

2013-10-12 Thread Georg Brandl
Changes by Georg Brandl : Added file: http://bugs.python.org/file32063/reduce_equiv.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue12187] subprocess.wait() with a timeout uses polling on POSIX

2013-10-12 Thread STINNER Victor
STINNER Victor added the comment: For the PEP 446 (non inheritable files and sockets), it was discussed to write a helper similar to what Antoine proposes, but to only inherit a few handles instead all inherit all (inheritable) handles. -- ___ Python

[issue18582] PBKDF2 support

2013-10-12 Thread Christian Heimes
Christian Heimes added the comment: Done -- stage: -> patch review Added file: http://bugs.python.org/file32064/pbkdf2_2.patch ___ Python tracker ___ ___

[issue13833] No documentation for PyStructSequence

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 05dcaf761c7d by Georg Brandl in branch '3.3': Closes #13833: document PyStructSequence C-API functions. http://hg.python.org/cpython/rev/05dcaf761c7d -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed/rejected status

[issue19224] Make hash(None) consistent among processes

2013-10-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: There seems to be a pretty good consensus that this is something we don't want to support. -- resolution: -> rejected status: open -> closed ___ Python tracker ___

[issue19235] Add a dedicated subclass for recursion errors

2013-10-12 Thread Elazar Gershuni
Changes by Elazar Gershuni : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue13915] Update tutorial/modules for PEP 3147

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: Thanks for the suggestion! -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing

[issue13915] Update tutorial/modules for PEP 3147

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6ecef57f57f9 by Georg Brandl in branch '3.3': Closes #13915: update tutorial with respect to .pyc files (__pycache__ / PEP 3147). http://hg.python.org/cpython/rev/6ecef57f57f9 -- nosy: +python-dev resolution: -> fixed stage: needs patch ->

[issue19224] Make hash(None) consistent among processes

2013-10-12 Thread Christian Heimes
Christian Heimes added the comment: Tim has convinced me, too. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue19235] Add a dedicated subclass for recursion errors

2013-10-12 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue19235] Add a dedicated subclass for recursion errors

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: This sounds like a reasonable feature request to me. -- components: +Interpreter Core -Library (Lib) ___ Python tracker ___

[issue19235] Add a dedicated subclass for recursion errors

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: I agree. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue4965] Can doc index of html version be separately scrollable?

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: See http://sphinx-doc.org/latest/ for my preferred solution. -- ___ Python tracker ___ ___ Python-bugs-

[issue19131] Broken support of compressed AIFC files

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

[issue11233] clarifying Availability: Unix

2013-10-12 Thread Georg Brandl
Georg Brandl added the comment: A draft is attached. The directive currently just always links to the "availability" notes, which I have moved to the main "Operating system services" document. Please review! -- keywords: +patch Added file: http://bugs.python.org/file32065/availabilit

[issue18919] Unify audio modules tests

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3303d735058f by Serhiy Storchaka in branch '2.7': Issue #18919: If the close() method of a writer in the sunau or wave module http://hg.python.org/cpython/rev/3303d735058f New changeset b7eae747385c by Serhiy Storchaka in branch '3.3': Issue #18919:

[issue19232] Speed up _decimal import

2013-10-12 Thread Stefan Krah
Stefan Krah added the comment: I can't apply the patch that was created with diff --git, so here is another one that is less readable but applies. -- Added file: http://bugs.python.org/file32066/issue19232-2.patch ___ Python tracker

[issue19236] Add Tornado HTTP benchmark

2013-10-12 Thread Antoine Pitrou
New submission from Antoine Pitrou: Tornado 3.1.1 is compatible with Python 2.6, 2.7, 3.2 and upwards, which makes it a good candidate for a networking benchmark. Here is a patch adding a HTTP (server + client) benchmark. A trivial HTTP server is spawned which writes a sizable body in response

[issue19236] Add Tornado HTTP benchmark

2013-10-12 Thread Stefan Behnel
Changes by Stefan Behnel : -- components: +Benchmarks nosy: +scoder ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19236] Add Tornado HTTP benchmark

2013-10-12 Thread Gregory P. Smith
Gregory P. Smith added the comment: makes sense to me. -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue19236] Add Tornado HTTP benchmark

2013-10-12 Thread Stefan Behnel
Stefan Behnel added the comment: +1. Does it give reasonably predictable timings? -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue19236] Add Tornado HTTP benchmark

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: > +1. Does it give reasonably predictable timings? Yes. There is a small warmup phase at the beginning (the first few rounds are skipped). The benchmark eats 100% CPU on one core, mostly userspace (at least under Linux). --

[issue19219] speed up marshal.loads()

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4059e871e74e by Antoine Pitrou in branch 'default': Issue #19219: Speed up marshal.loads(), and make pyc files slightly (5% to 10%) smaller. http://hg.python.org/cpython/rev/4059e871e74e -- nosy: +python-dev ___

[issue19219] speed up marshal.loads()

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've now committed the latest patch (marshal_opts5.patch). -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue19232] Speed up _decimal import

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: > I can't apply the patch that was created with diff --git, so here is > another one that is less readable but applies. You can apply it using "hg import --no-commit", I think. -- nosy: +pitrou ___ Python tracker

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

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: Serhiy, sorry to ping you, but do you think you're gonna look at this? -- ___ Python tracker ___ ___

[issue18281] tarfile defines stat constants

2013-10-12 Thread Ethan Furman
Ethan Furman added the comment: Sounds like we have a consensus. If no objections I'll commit in four or five days (in time for the last alpha). -- ___ Python tracker ___ _

[issue12186] readline.replace_history_item still leaks memory

2013-10-12 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +haypo stage: -> patch review versions: -Python 2.6, Python 3.1, Python 3.2 ___ Python tracker ___

[issue4555] Smelly exports (global symbols in python not prefixed with Py or _Py)

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 142c62a490ce by Antoine Pitrou in branch 'default': Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py". http://hg.python.org/cpython/rev/142c62a490ce -- nosy: +python-dev ___ P

[issue4555] Smelly exports (global symbols in python not prefixed with Py or _Py)

2013-10-12 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed versions: -Python 3.2 ___ Python tracker ___ __

[issue11233] clarifying Availability: Unix

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: I can't comment on the Sphinx extension code but this is a good idea. -- ___ Python tracker ___ ___

  1   2   >