[issue16761] Fix int(base=X)

2012-12-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: I don't think a backport is appropriate for this kind of change. -- nosy: +rhettinger versions: -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker _

[issue13454] crash when deleting one pair from tee()

2012-12-27 Thread Georg Brandl
Georg Brandl added the comment: The patch replaces a Py_CLEAR(tdo->nextlink) with a construct that does, basically, something like this several times: Py_DECREF(tdo->nextlink) tdo->nextlink which is what leads to the issues that Py_CLEAR is supposed to prevent. Therefore I think this pat

[issue1470548] Bugfix for #1470540 (XMLGenerator cannot output UTF-16)

2012-12-27 Thread Georg Brandl
Georg Brandl added the comment: I'd like Antoine to have a look at all that io stuff. It looks quite bloated. In your except clause, you're not calling self._close. -- nosy: +pitrou ___ Python tracker __

[issue16791] itertools.chain.from_iterable doesn't stop

2012-12-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: This isn't a bug. It is an intended feature that chain.from_iterable evaluates lazily (and is documented as such). The pure python equivalent in the docs behaves the same as the C version does. Also, it is a long standing feature of lists that you can loo

[issue16485] FD leaks in aifc module

2012-12-27 Thread Georg Brandl
Georg Brandl added the comment: Looks good to me, except: the patch contains unrelated whitespace changes. Please don't commit them along the fix. If you think they are really necessary, they should go in a separate commit. -- nosy: +georg.brandl

[issue16486] Add context manager support to aifc module

2012-12-27 Thread Georg Brandl
Georg Brandl added the comment: The "self.fout.close()" is not needed here I think. Another thing the test should test is that the file was actually closed on exception. Otherwise, LGTM. -- nosy: +georg.brandl ___ Python tracker

[issue16791] itertools.chain.from_iterable doesn't stop

2012-12-27 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16761] Fix int(base=X)

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

[issue16800] tempfile._get_default_tempdir() leaves files behind when HD is full

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Library (Lib) -Extension Modules stage: -> patch review versions: -Python 2.6, Python 3.1, Python 3.5 ___ Python tracker ___ _

[issue16800] tempfile._get_default_tempdir() leaves files behind when HD is full

2012-12-27 Thread Amir Szekely
Amir Szekely added the comment: Reproduction details: [root@meh /]# uname -a Linux meh 2.6.32-131.17.1.el6-0.0.3.smp.pae.gcc4.1.x86.i686 #1 SMP Tue Dec 20 02:40:22 PST 2011 i686 GNU/Linux [root@meh /]# pwd / [root@meh /]# dd if=/dev/zero of=/tmp/BIG bs=4M dd: writing `/tmp/BIG': No space left o

[issue14834] A list of broken links on the python.org website

2012-12-27 Thread Benjamin Peterson
Benjamin Peterson added the comment: Considering 3.1.4 is outdated even in the 3.1 series, I think we can let it slide. -- resolution: -> works for me status: open -> closed ___ Python tracker ___

[issue14834] A list of broken links on the python.org website

2012-12-27 Thread Ned Deily
Ned Deily added the comment: Benjamin, do you have an opinion about the missing .asc files for the 3.1.x releases? If not, this issue should be closed. -- ___ Python tracker __

[issue16800] tempfile._get_default_tempdir() leaves files behind when HD is full

2012-12-27 Thread Amir Szekely
New submission from Amir Szekely: tempfile._get_default_tempdir() tries to find a good temporary directory by attempting to create a file and write a string into it for all candidate directories. It deletes those files right after closing them. But if writing rather than creating them fails, t

[issue16795] Patch: some changes to AST to make it more useful for static language analysis

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

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-27 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Sorry for chiming in so late. The patch looks fine to me. -- ___ Python tracker ___ ___ Python-bu

[issue10848] Move test.regrtest from getopt to argparse

2012-12-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: Since regrtest is now using argparse (as of 6e2e5adc0400), is there a reason to keep this issue open? Or should the issue be retitled (current title: "Move test.regrtest from getopt to argparse")? There seem to be some thoughts in the comments that are broad

[issue16640] Less code under lock in sched.scheduler

2012-12-27 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Patch looks fine to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16641] sched.scheduler.enter arguments should not be modifiable

2012-12-27 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Patch looks fine to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16799] switch regrtest from getopt-style options to argparse Namespace object

2012-12-27 Thread Chris Jerdonek
New submission from Chris Jerdonek: Issue 15302 switched regrtest from getopt to argparse for parsing options. However, regrtest.main() still expects and operates on getopt-style options. This issue is to continue the regrtest refactoring and replace the use of getopt-style options with an ar

[issue16799] switch regrtest from getopt options to argparse Namespace

2012-12-27 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- title: switch regrtest from getopt-style options to argparse Namespace object -> switch regrtest from getopt options to argparse Namespace ___ Python tracker

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: Thanks again for your reviews, Benjamin (and others). I created issue 16799 for the next phase of this process: changing regrtest.main() from operating on getopt-style parsed options to an argparse Namespace object. -- resolution: -> fixed stage: pat

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6e2e5adc0400 by Chris Jerdonek in branch 'default': Issue #15302: Switch regrtest from using getopt to using argparse. http://hg.python.org/cpython/rev/6e2e5adc0400 -- nosy: +python-dev ___ Python tracker

[issue15324] --fromfile, --match, and --randomize don't work in regrtest

2012-12-27 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed type: enhancement -> behavior ___ Python tracker ___ ___

[issue15324] --fromfile, --match, and --randomize don't work in regrtest

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset b7a0e03bb987 by Chris Jerdonek in branch '2.7': Issue #15324: Fix regrtest parsing of --fromfile and --randomize options. http://hg.python.org/cpython/rev/b7a0e03bb987 New changeset b2cd12690a51 by Chris Jerdonek in branch '3.2': Issue #15324: Fix r

[issue16798] DTD not checked

2012-12-27 Thread Javier Domingo
New submission from Javier Domingo: Hi, I am trying to find any tip on how to use minidom or etree xml implementations to check the xml syntax. I just found that the only way to check xml syntax throught dtds is using lxml. Would it be possible to implement this in the minidom or ElementTree

[issue16797] sporadic test_faulthandler failure

2012-12-27 Thread Ezio Melotti
Ezio Melotti added the comment: Duplicate of #15971. -- nosy: +ezio.melotti resolution: -> duplicate stage: needs patch -> committed/rejected status: open -> closed superseder: -> Sporadic failure in test_dump_tracebacks_later_file (test_faulthandler)

[issue16797] sporadic test_faulthandler failure

2012-12-27 Thread Antoine Pitrou
New submission from Antoine Pitrou: http://buildbot.python.org/all/builders/AMD64%20Mountain%20Lion%20%5BSB%5D%203.x/builds/631 == FAIL: test_dump_traceback_later_file (test.test_faulthandler.FaultHandlerTests) -

[issue16796] Fix argparse docs typo: "an special action" to "a special action"

2012-12-27 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report and the patch! -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> enhancement versions: +Python 2.7, Python 3.2, Python 3.3, Python

[issue16796] Fix argparse docs typo: "an special action" to "a special action"

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset c1623a032adf by Ezio Melotti in branch '2.7': #16796: fix typo. Patch by Michael Schurter. http://hg.python.org/cpython/rev/c1623a032adf New changeset f348a3110a85 by Ezio Melotti in branch '3.2': #16796: fix typo. Patch by Michael Schurter. http:

[issue16796] Fix argparse docs typo: "an special action" to "a special action"

2012-12-27 Thread Michael Schurter
Changes by Michael Schurter : -- assignee: -> docs@python components: +Documentation nosy: +docs@python ___ Python tracker ___ ___ Py

[issue16796] Fix argparse docs typo: "an special action" to "a special action"

2012-12-27 Thread Michael Schurter
New submission from Michael Schurter: Title says it all; patch has the fix. No need for an ACKS entry -- files: argparse-docs-typo.patch keywords: patch messages: 178348 nosy: schmichael priority: normal severity: normal status: open title: Fix argparse docs typo: "an special action" to

[issue16792] Mark small ints test as CPython-only

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

[issue16793] Get rid of deprecated assertEquals etc in tests

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I haven't committed changes to lib2to3 tests as I don't sure what version they should be compatible. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker

[issue16793] Get rid of deprecated assertEquals etc in tests

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset a617a50d2766 by Serhiy Storchaka in branch '2.7': Issue #16793. Replace deprecated unittest asserts with modern counterparts. http://hg.python.org/cpython/rev/a617a50d2766 New changeset 6601818622ea by Serhiy Storchaka in branch '3.3': Issue #16793.

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 327896bf3152 by Serhiy Storchaka in branch '2.7': Issue #16792: Use assertIs() to test identity. http://hg.python.org/cpython/rev/327896bf3152 -- ___ Python tracker __

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Indeed. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: You can use assertIs() in 2.7 as well, no? +@test_support.cpython_only +def test_small_ints(self): +self.assertTrue(int('10') is 10) -- ___ Python tracker

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8f82e9992ad9 by Serhiy Storchaka in branch '2.7': Issue #16792: Mark small ints test as CPython-only. http://hg.python.org/cpython/rev/8f82e9992ad9 New changeset 31955234b624 by Serhiy Storchaka in branch '3.2': Issue #16792: Mark small ints test as

[issue16599] unittest: Access test result from tearDown

2012-12-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: I agree with Serhiy here. This use case seems too specialized, and there are easy ways to achieve the same thing in code. -- nosy: +chris.jerdonek ___ Python tracker

[issue8713] multiprocessing needs option to eschew fork() under Linux

2012-12-27 Thread Gregory P. Smith
Gregory P. Smith added the comment: ah, i missed that update. cool! +1 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue16641] sched.scheduler.enter arguments should not be modifiable

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

[issue16645] Wrong test_extract_hardlink() in test_tarfile.py

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

[issue16642] Mention new "kwargs" named tuple parameter in sched module

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: docs@python -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue15326] --random does not work for regrtest

2012-12-27 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- resolution: -> duplicate stage: patch review -> committed/rejected status: open -> closed superseder: Use argparse instead of getopt in test.regrtest -> --fromfile, --match, and --randomize don't work in regrtest versions: +Python 2.7, Python 3.2, Python

[issue15325] --fromfile does not work for regrtest

2012-12-27 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- resolution: -> duplicate stage: patch review -> committed/rejected status: open -> closed superseder: Use argparse instead of getopt in test.regrtest -> --fromfile, --match, and --randomize don't work in regrtest ___ P

[issue15324] --fromfile, --match, and --randomize don't work in regrtest

2012-12-27 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- title: --match does not work for regrtest -> --fromfile, --match, and --randomize don't work in regrtest ___ Python tracker ___ __

[issue16795] Patch: some changes to AST to make it more useful for static language analysis

2012-12-27 Thread Sven Brauch
New submission from Sven Brauch: Here's a patch doing some adjustments to the AST to make it more useful for static language analysis, as discussed in http://mail.python.org/pipermail/python-dev/2012-December/123320.html. Changes done: * the described fix to attribute ranges * add location i

[issue16761] Fix int(base=X)

2012-12-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: When this patch is updated because of the commit for issue 16790, in 3.x can the edited test cases be moved to the top of the test class per the following comment (as appropriate)? http://bugs.python.org/issue16790#msg178282 As stated there, this will make sy

[issue16793] Get rid of deprecated assertEquals etc in tests

2012-12-27 Thread Ezio Melotti
Ezio Melotti added the comment: LGTM. -- nosy: +ezio.melotti stage: patch review -> commit review ___ Python tracker ___ ___ Python-bu

[issue16793] Get rid of deprecated assertEquals etc in tests

2012-12-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: LGTM. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8713] multiprocessing needs option to eschew fork() under Linux

2012-12-27 Thread Richard Oudkerk
Richard Oudkerk added the comment: > The safest default would be fork+exec though we need to implement the > fork+exec code as a C extension module or have it use subprocess (as I > noted in the mb_fork_exec.patch review). That was an old version of the patch. In the branch http://hg.pyt

[issue8713] multiprocessing needs option to eschew fork() under Linux

2012-12-27 Thread Richard Oudkerk
Changes by Richard Oudkerk : Added file: http://bugs.python.org/file28461/8f08d83264a0.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue16640] Less code under lock in sched.scheduler

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If no one objects I will commit this next year. -- assignee: -> serhiy.storchaka ___ Python tracker ___ _

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If no one objects I will commit this next year. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- nosy: +chris.jerdonek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue16793] Get rid of deprecated assertEquals etc in tests

2012-12-27 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- nosy: +chris.jerdonek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue16165] sched.scheduler.run() blocks scheduler

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

[issue15539] Fixing Tools/scripts/pindent.py

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If no one objects I will commit this next year. -- assignee: -> serhiy.storchaka ___ Python tracker ___ _

[issue16541] tk_setPalette doesn't accept keyword parameters

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If no one objects I will commit this next year. -- assignee: -> serhiy.storchaka ___ Python tracker ___ _

[issue16790] provide ability to share tests between int and long tests

2012-12-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: Thanks for the reviews, Serhiy. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue14099] ZipFile.open() should not reopen the underlying file

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

[issue16790] provide ability to share tests between int and long tests

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset eb1734e579f7 by Chris Jerdonek in branch '2.7': Issue #16790: add some of the recent issue #16045 int tests to test_long. http://hg.python.org/cpython/rev/eb1734e579f7 -- nosy: +python-dev ___ Python trac

[issue16045] add more unit tests for built-in int()

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset eb1734e579f7 by Chris Jerdonek in branch '2.7': Issue #16790: add some of the recent issue #16045 int tests to test_long. http://hg.python.org/cpython/rev/eb1734e579f7 -- ___ Python tracker

[issue16491] IDLE and except: raise from

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If no one objects I will commit this next year. -- assignee: -> serhiy.storchaka ___ Python tracker ___ _

[issue16216] Arithmetic operations with NULL

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

[issue16551] Cleanup the pure Python pickle implementation

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

[issue9290] IDLE and Command line present different behavior for sys.stdin

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

[issue14850] The inconsistency of codecs.charmap_decode

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

[issue13454] crash when deleting one pair from tee()

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

[issue1470548] Bugfix for #1470540 (XMLGenerator cannot output UTF-16)

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

[issue16486] Add context manager support to aifc module

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

[issue16485] FD leaks in aifc module

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

[issue1470548] Bugfix for #1470540 (XMLGenerator cannot output UTF-16)

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If no one objects I will commit this next year. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue16485] FD leaks in aifc module

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If no one objects I will commit this next year. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue13454] crash when deleting one pair from tee()

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue16320] Establish order in bytes/string dependencies

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Please review. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue16759] winreg.QueryValueEx returns signed 32bit value instead of unsigned

2012-12-27 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.3, Python 3.4 ___ Python tracker _

[issue14850] The inconsistency of codecs.charmap_decode

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I no one objects I will commit this next year. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue16759] winreg.QueryValueEx returns signed 32bit value instead of unsigned

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset d68563e7ae82 by Brian Curtin in branch '2.7': Fix #16759. Convert DWORD registry values using unsigned long. http://hg.python.org/cpython/rev/d68563e7ae82 -- ___ Python tracker

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Mark Dickinson
Mark Dickinson added the comment: LGTM. -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12004] PyZipFile.writepy gives internal error on syntax errors

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ben Morgan, can you please submit a contributor form? http://python.org/psf/contrib/contrib-form/ http://python.org/psf/contrib/ -- ___ Python tracker __

[issue15239] Abandoned Tools/unicode/mkstringprep.py

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Martin, are you have time to review now? -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue11908] Weird `slice.stop or sys.maxint`

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: commit review -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue16759] winreg.QueryValueEx returns signed 32bit value instead of unsigned

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4b7e60e05027 by Brian Curtin in branch '3.2': Fix #16759. Convert DWORD registry values using PyLong_FromUnsignedLong. http://hg.python.org/cpython/rev/4b7e60e05027 -- nosy: +python-dev ___ Python tracker

[issue8713] multiprocessing needs option to eschew fork() under Linux

2012-12-27 Thread Gregory P. Smith
Gregory P. Smith added the comment: I think the forkserver approach is a good idea. It is what a lot of users will choose. forkserver won't work everywhere though so the fork+exec option is still desirable to have available. Threads can be started by non-python code (extension modules, or th

[issue8713] multiprocessing needs option to eschew fork() under Linux

2012-12-27 Thread Ram Rachum
Changes by Ram Rachum : -- nosy: -cool-RR ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue16504] IDLE - fatal error when opening a file with certain tokenizing errors

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you, Roger. Fixed. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: Rietveld is erroring out on me again whenever I try to reply to a comment, so I'm posting my comment here. On 2012/12/27 18:29:22, Benjamin Peterson wrote: > > On 2012/12/27 04:44:33, Benjamin Peterson wrote: > > > if val: > > > > Again, we need this to match

[issue16504] IDLE - fatal error when opening a file with certain tokenizing errors

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset d3c81ef728ae by Serhiy Storchaka in branch '2.7': Issue #16504: Catch SyntaxErrors raised by tokenizer in IDLE. http://hg.python.org/cpython/rev/d3c81ef728ae New changeset e1ef04cfb57c by Serhiy Storchaka in branch '3.2': Issue #16504: Catch SyntaxE

[issue16504] IDLE - fatal error when opening a file with certain tokenizing errors

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

[issue8713] multiprocessing needs option to eschew fork() under Linux

2012-12-27 Thread Richard Oudkerk
Richard Oudkerk added the comment: Numbers when running on Linux on a laptop with 2 cores + hyperthreading. RUNNING UNITTESTS: fork: real0m50.687s user0m9.213s sys 0m4.012s fork+exec: real1m9.062s user0m48.579s sys 0m6.648s forkserver:

[issue16794] Can't get a list of modules in Python's help system

2012-12-27 Thread R. David Murray
R. David Murray added the comment: This is a duplicate of issue 10060, and as indicated there there really isn't much Python can do about this. You should report the bug to Ubuntu, but I'm pretty sure there is already a bug in their system for it (which I believe has been fixed). --

[issue16794] Can't get a list of modules in Python's help system

2012-12-27 Thread vertograd phrokhladny
New submission from vertograd phrokhladny: Ubuntu 12.4 LTS -- assignee: docs@python components: Documentation files: modules_command_crash.log messages: 178310 nosy: docs@python, vertograd.phrokhladny priority: normal severity: normal status: open title: Can't get a list of modules in Py

[issue16682] Document that audioop works with bytes, not strings

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue16682] Document that audioop works with bytes, not strings

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset cd2b4074a2d9 by Serhiy Storchaka in branch '3.2': Issue #16682: Replace "Python string" to "bytes object" in audioop documentation. http://hg.python.org/cpython/rev/cd2b4074a2d9 New changeset e8248e597060 by Serhiy Storchaka in branch '3.3': Issue

[issue16778] Logger.findCaller needs to be smarter

2012-12-27 Thread Vinay Sajip
Vinay Sajip added the comment: I will give this some thought, but it won't be possible to add it to Python 2.x (which is closed for feature additions). Any enhancement in this area would apply to Python 3.4 and later. -- versions: +Python 3.4 -Python 2.7 __

[issue14420] winreg SetValueEx DWord type incompatible with value argument

2012-12-27 Thread Brian Curtin
Brian Curtin added the comment: Never mind msg178303. The fix was roughly the same and in the same area, so now we're covered on 2.7 as well. -- ___ Python tracker ___ _

[issue14420] winreg SetValueEx DWord type incompatible with value argument

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset ccbb16719540 by Brian Curtin in branch '2.7': Fix #14420. Check for PyLong as well as PyInt when converting in Py2Reg. http://hg.python.org/cpython/rev/ccbb16719540 -- ___ Python tracker

[issue16682] Document that audioop works with bytes, not strings

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: docs@python -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue16790] provide ability to share tests between int and long tests

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

  1   2   >