[issue6602] Add argument to control file object used by BaseHTTPServer’s log_message

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Agreed. -- nosy: +georg.brandl resolution: -> rejected status: pending -> closed ___ Python tracker <http://bugs.python.org/

[issue11934] build with --prefix=/dev/null and zlib enabled in Modules/Setup failed

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of feedback. -- nosy: +georg.brandl resolution: -> works for me status: pending -> closed ___ Python tracker <http://bugs.python.org/i

[issue13329] Runs normal as console script but falls as CGI

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of feedback. -- nosy: +georg.brandl resolution: -> out of date status: pending -> closed ___ Python tracker <http://bugs.python.org/i

[issue10196] distutils.get_python_lib() returns /usr/local/python3/dist-packages on Ubuntu 10.10

2013-10-13 Thread Georg Brandl
Changes by Georg Brandl : -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue10196> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue8579] Add missing tests for FlushKey, LoadKey, and SaveKey in winreg

2013-10-13 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.4 -Python 2.6, Python 3.1, Python 3.2 ___ Python tracker <http://bugs.python.org/issue8579> ___ ___ Python-bug

[issue19245] mingw-meta: installation

2013-10-13 Thread Georg Brandl
Changes by Georg Brandl : -- dependencies: +MINGW: generalization of posix installation in distutils, MINGW: install import library, MINGW: support stdcall without underscore, MINGW: use replace instead rename to avoid failure on windows ___ Python

[issue18714] Add tests for pdb.find_function

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Thanks for the patch! -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue18714> ___ ___ Python-bugs-list mailin

[issue19248] sphinx is not py3k compatible

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Looks ok for now. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue19248> ___ ___ Python-bugs-list mailin

[issue18776] atexit error display behavior changed in python 3

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: The attached patch fixes two instances of PyErr_Display being called without the traceback properly set on the exception object. -- keywords: +patch nosy: +georg.brandl, pitrou Added file: http://bugs.python.org/file32094/set_traceback.patch

[issue18527] Upgrade Modules/zlib to 1.2.8

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Sounds reasonable at least for 3.4. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue18527> ___ ___ Pytho

[issue18776] atexit error display behavior changed in python 3

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: With your patch, can the SetTraceback in PyErr_Print be removed? Or should PyErr_Display only set the tb if there is none on the object already? -- ___ Python tracker <http://bugs.python.org/issue18

[issue17631] inspect getsource does not display full text of lambda

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Unfortunately, this is impossible to fix with the current implementation, which only tokenizes the source. A full parse would be necessary. Since this is just a minor inconvenience (and there are many situations where the source cannot be found at all), I&#

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

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: LGTM. -- ___ Python tracker <http://bugs.python.org/issue4965> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19250] Duplicate import documentation in py3k

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: This is already fixed in the 3.3 branch (see #17938); it will be updated for pydoc "automatically" before the next bugfix release (the actual content comes from Lib/pydoc_data/topics.py). -- nosy: +georg.brandl resolution: -> fixed

[issue19251] bitwise ops for bytes of equal length

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: I assume you have a use case? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue19251> ___ ___ Python-bug

[issue17756] test_syntax_error fails when run in the installed location

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Can't reproduce with current 3.3 tip. -- nosy: +georg.brandl resolution: -> out of date status: open -> pending ___ Python tracker <http://bugs.python.

[issue17335] FieldStorageClass is messed up

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: I'll keep the class attribute for compatibility, but will remove the local assignment. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/is

[issue17352] Be clear that __prepare__ must be declared as a class method

2013-10-13 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> docs@python components: +Documentation nosy: +docs@python ___ Python tracker <http://bugs.python.org/issu

[issue1539925] warnings in interactive sessions

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Is there still any interest in this? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue1539925> ___ ___ Pytho

[issue14999] ctypes ArgumentError lists arguments from 1, not 0

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: IMO we always use 1-based numbering when counting things. Try e.g. >>> format('a', None) Traceback (most recent call last): File "", line 1, in TypeError: format expects arg 2 to be string or unicode, not NoneType -- n

[issue19253] PyArg_ParseTuple: wrong use of seterror() clips helpful type error annotation

2013-10-13 Thread Georg Brandl
New submission from Georg Brandl: Follow-up to #6624. This issue changed a call to seterror() whose last argument is supposed to be NULL or a "custom error message" given by the ";message" format character. This had two effects: * the custom message (if present) is

[issue12348] case sensitivity in packaging.pypi.simple.Crawler

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: Closing as a packaging-related bug. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue17084] nntplib.NNTP.xover does not always return results as documented

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: The NNTP server seems to be violating the protocol; it is supposed to convert tab characters in the fields to spaces. It appears that in your example the list of references was separated by a tab character, which Python then (correctly) interprets as separator

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

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: You'll have to put a copy in sphinxext/static. -- ___ Python tracker <http://bugs.python.org/issue4965> ___ ___ Python-bugs-l

[issue14112] tutorial intro talks of "shallow copy" concept without explanation

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: The text talks about containers which, although often the case, is not general enough; copy() and deepcopy() can work with any object. -- ___ Python tracker <http://bugs.python.org/issue14

[issue18521] [cppcheck] Full report

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: I fixed some items from Ezio's list that I think were legitimate; the rest is mostly invalid. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/is

[issue11471] If without else generates redundant jump

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Python-ast.c can't be changed; it is auto-generated. But the whole thing can be handled in compile.c I think -- see attached patch. Test suite passes (except for test_dis, which checks compilation result against a given list of bytecodes). --

[issue11471] If without else generates redundant jump

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: I'll make a complete patch with test suite additions (and fixing test_dis) if this is deemed to be a correct approach. -- ___ Python tracker <http://bugs.python.org/is

[issue14407] concurrent.futures tests don't adher to test_cases protocol

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +bquinlan ___ Python tracker <http://bugs.python.org/issue14407> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11646] 2to3: msvcrt.(get|put)ch -> (get|put)wch

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +benjamin.peterson ___ Python tracker <http://bugs.python.org/issue11646> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7979] connect_ex returns 103 often

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Is this still the case with Python 2.7? -- nosy: +georg.brandl resolution: -> out of date status: open -> pending ___ Python tracker <http://bugs.python.org/

[issue15817] Misc/gdbinit: Expose command documentation to gdb help

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> dmalcolm nosy: +dmalcolm ___ Python tracker <http://bugs.python.org/issue15817> ___ ___ Python-bugs-list mai

[issue17294] compile-flag for single-execution to return value instead of printing it

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: If you know you have an expression and would like the value, you should use the "eval" mode. In the case of "single", you can adapt sys.displayhook to change where to print (if at all) the values. Note that "single" sometimes pr

[issue17095] Modules/Setup *shared* support broken

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- versions: -Python 3.2 ___ Python tracker <http://bugs.python.org/issue17095> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16425] minidom replaceChild(new_child, old_child) removes new_child even if in another document

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +eli.bendersky ___ Python tracker <http://bugs.python.org/issue16425> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16845] warnings.simplefilter should validate input

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +brett.cannon ___ Python tracker <http://bugs.python.org/issue16845> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15648] stderr "refs" output does not respect PYTHONIOENCODING

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: The "refs" output is only active in debug mode, and only for debugging. It is printed directly to stderr using C fprintf(), I don't think it's worth the complication. -- nosy: +georg.brandl resolution: -> wont fix

[issue15613] argparse ArgumentDefaultsHelpFormatter interacts badly with --arg and nargs=+

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +bethard ___ Python tracker <http://bugs.python.org/issue15613> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15440] multiprocess fails to re-raise exception which has mandatory arguments

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue15440> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15371] test_cmd_line_script should include namespace package tests

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issue15371> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18300] script_helper._asert_python should set TERM='' by default.

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Sounds good to me. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue18300> ___ ___ Python-bugs-list mailin

[issue18209] Bytearray type not supported as a mutable object in the fcntl.ioctl function

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue18209> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18068] pickle + weakref.proxy(self)

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue18068> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18096] bad library order returned by python-config.in

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +barry, ned.deily ___ Python tracker <http://bugs.python.org/issue18096> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18254] Accessing attr dict at definition time of a class from a metaclass results in changed type.

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Only affects 3.2, so this won't be fixed anymore. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.

[issue2919] Merge profile/cProfile in 3.n+1

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Last desperate ping for 3.4? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue2919> ___ ___ Python-bug

[issue17765] weakref.ref ignores a 'callback' keyword argument

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: See attached patch, it handles this like all other builtins that don't support keyword arguments in their constructor. -- keywords: +patch nosy: +georg.brandl, pitrou versions: +Python 2.7, Python 3.3 Added file: http://bugs.python.org/file

[issue19260] "int" comment in marshal.c is outdated

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: The "rXXX" notation is reserved for SVN revision numbers, which are unambiguous. The revision numbers in Mercurial are specific to each clone. Other than that, LGTM. -- nosy: +georg.brandl ___ Pyth

[issue19258] Got resource warning when running wsgiref demo app

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue19258> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19138] doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +tim.peters ___ Python tracker <http://bugs.python.org/issue19138> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18209] Bytearray type not supported as a mutable object in the fcntl.ioctl function

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Agreed. This is not really a bugfix. -- resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue17765] weakref.ref ignores a 'callback' keyword argument

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Good point, that is pointless in __init__(). -- ___ Python tracker <http://bugs.python.org/issue17765> ___ ___ Python-bugs-list m

[issue17765] weakref.ref ignores a 'callback' keyword argument

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : Added file: http://bugs.python.org/file32119/no_weakref_kwargs_2.patch ___ Python tracker <http://bugs.python.org/issue17765> ___ ___ Python-bug

[issue11471] If without else generates redundant jump

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Updated patch with test suite update. -- Added file: http://bugs.python.org/file32120/if_else_nojump_2.patch ___ Python tracker <http://bugs.python.org/issue11

[issue19253] PyArg_ParseTuple: wrong use of seterror() clips helpful type error annotation

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Issue #6624 wasn't an issue, it should have been "closed-invalid" :) But you're right, a test case is needed, see new patch. -- Added file: http://bugs.python.org/file32121/seterror_fix_2.patch __

[issue11471] If without else generates redundant jump

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Yep :) -- ___ Python tracker <http://bugs.python.org/issue11471> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1575020] Request wave support > 16 bit samples

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Serhiy, you're welcome to set issues to pending, but please don't forget to close them after a certain time... -- status: pending -> open ___ Python tracker <http://bugs.python.

[issue1575020] Request wave support > 16 bit samples

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- status: open -> pending ___ Python tracker <http://bugs.python.org/issue1575020> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue18758] Fix internal references in the documentation

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Thank you for all the effort you put into this! -- ___ Python tracker <http://bugs.python.org/issue18758> ___ ___ Python-bug

[issue18919] Unify audio modules tests

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Some new (I assume) ResourceWarnings from test_wave: /home/gbr/devel/python/Lib/unittest/case.py:571: ResourceWarning: unclosed file <_io.BufferedWriter name='@test_1974_tmp'> testMethod() /home/gbr/devel/python/Lib/chunk.py:61: ResourceWarnin

[issue18521] [cppcheck] Full report

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: > Shouldn't converttuple() in getargs.c set "levels[1] = 0;" after second > "levels[0] = i+1;"? I think it is fine, since convertitem() or converttuple() called from convertitem() will set their levels[0] (which is levels[1] in th

[issue18521] [cppcheck] Full report

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Closing this one as Fixed, then. Thanks everybody. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue9170] zipfile cannot read AES encrypted files

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: #8998 has been closed (among others due to legal concerns), so this need not be kept open. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8507] abc.abstractproperty does not copy docstring

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: Confirmed; this appears fixed. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue19262] Add asyncio (tulip, PEP 3156) to stdlib

2013-10-14 Thread Georg Brandl
Georg Brandl added the comment: If you need help with docs, let me know. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue19262> ___ ___

[issue19184] dis module has incorrect docs for RAISE_VARARGS

2013-10-15 Thread Georg Brandl
Georg Brandl added the comment: Tyler, thanks for the suggestion. However it doesn't really solve the issue: the parameter order is the opposite of the current doc text (and your suggested text). -- nosy: +georg.brandl ___ Python tracker

[issue19079] chameleon benchmark fails on 3.4

2013-10-15 Thread Georg Brandl
Georg Brandl added the comment: Ah yes, I somehow missed running perf.py itself with Python 3. Should be fixed now; adapting the #19108 patch should be easy enough. -- ___ Python tracker <http://bugs.python.org/issue19

[issue19079] chameleon benchmark fails on 3.4

2013-10-15 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue19079> ___ ___ Python-bugs-list

[issue19274] make zipfile.PyZipFile more usable

2013-10-16 Thread Georg Brandl
Georg Brandl added the comment: Looks fine but -- as a new feature -- is 3.4 only, and needs docs and tests. -- nosy: +georg.brandl stage: -> patch review versions: +Python 3.4 -Python 2.7 ___ Python tracker <http://bugs.python.org/issu

[issue19278] zlib compressobj: expose missing knobs

2013-10-17 Thread Georg Brandl
Georg Brandl added the comment: Thanks for the suggestion; the parameters have already been added in Python 3.3, see http://docs.python.org/3/library/zlib.html#zlib.compressobj. -- nosy: +georg.brandl resolution: -> out of date status: open ->

[issue19278] zlib compressobj: expose missing knobs

2013-10-17 Thread Georg Brandl
Georg Brandl added the comment: Actually, compressobj() has always supported up to five arguments (named level, method, wbits, memlevel, strategy); I'll document this for 2.7 for issue 19277. The new thing in 3.3 are support for keyword arguments and the zdict para

[issue18606] Add statistics module to standard library

2013-10-18 Thread Georg Brandl
Georg Brandl added the comment: The rst file is missing from your patch. I already posted a patch with statistics.rst five days ago. I have no idea why you ignored it. -- ___ Python tracker <http://bugs.python.org/issue18

[issue18606] Add statistics module to standard library

2013-10-19 Thread Georg Brandl
Georg Brandl added the comment: > I'm sorry if I stepped on your toes, but I didn't ignore your patch. If I've > failed to follow the right procedure, it is due to inexperience, not malice. > You yourself suggested it was only a temporary version just good enough to &g

[issue15663] Investigate providing Tcl/Tk 8.5 with OS X installers

2013-10-20 Thread Georg Brandl
Georg Brandl added the comment: Yep (should there be a policy about this somewhere)? -- ___ Python tracker <http://bugs.python.org/issue15663> ___ ___ Python-bug

[issue19274] make zipfile.PyZipFile more usable

2013-10-20 Thread Georg Brandl
Georg Brandl added the comment: Hi Chris, your commit is a bit hard to review due to all the unrelated spacing changes. I assume this is done automatically by your editor? It's probably best to switch off that feature for CPython develo

[issue19274] make zipfile.PyZipFile more usable

2013-10-20 Thread Georg Brandl
Georg Brandl added the comment: While reviewing: is it intended that the filter is only called for directories and not for individual files? -- ___ Python tracker <http://bugs.python.org/issue19

[issue18603] PyOS_mystricmp unused and no longer available

2013-10-21 Thread Georg Brandl
Georg Brandl added the comment: Well, if the functions are part of the stable ABI (which it seems they are, as they don't fall under some exclusion defined by PEP 384) they shouldn't be removed if we take PEP 384 seriously. -- nos

[issue17294] compile-flag for single-execution to return value instead of printing it

2013-10-22 Thread Georg Brandl
Georg Brandl added the comment: Terry, thanks for your explanation; I was trying to find some time to write something similar... -- ___ Python tracker <http://bugs.python.org/issue17

[issue18747] Re-seed OpenSSL's PRNG after fork

2013-10-26 Thread Georg Brandl
Georg Brandl added the comment: #19227 must be solved before anything is backported to the security branches. -- dependencies: +test_multiprocessing_xxx hangs under Gentoo buildbots ___ Python tracker <http://bugs.python.org/issue18

[issue16041] poplib: unlimited readline() from connection

2013-10-26 Thread Georg Brandl
Georg Brandl added the comment: Also merged to default. -- versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue16041> ___ ___ Pytho

[issue17997] ssl.match_hostname(): sub string wildcard should not match IDNA prefix

2013-10-26 Thread Georg Brandl
Georg Brandl added the comment: Also merged to default. -- versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue17997> ___ ___ Pytho

[issue16040] nntplib: unlimited readline() from connection

2013-10-26 Thread Georg Brandl
Georg Brandl added the comment: Also merged to default. -- versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue16040> ___ ___ Pytho

[issue16039] imaplib: unlimited readline() from connection

2013-10-26 Thread Georg Brandl
Georg Brandl added the comment: Also merged to default. -- versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue16039> ___ ___ Pytho

[issue16037] httplib: header parsing is unlimited

2013-10-26 Thread Georg Brandl
Georg Brandl added the comment: Also merged to default. -- versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue16037> ___ ___ Pytho

[issue19227] test_multiprocessing_xxx hangs under Gentoo buildbots

2013-10-26 Thread Georg Brandl
Georg Brandl added the comment: OK, I'm going to apply atfork_prepare.patch for 3.3.3rc1. If there is any indication of a continuing problem, we'll revert the whole re-seeding code for the final. -- ___ Python tracker <http://bu

[issue18964] test_tcl fails when _tkinter linked with Tcl 8.4

2013-10-27 Thread Georg Brandl
Georg Brandl added the comment: For some reason, this still fails on the OpenIndiana builder: http://buildbot.python.org/all/builders/AMD64%20OpenIndiana%203.3/builds/1104/steps/test/logs/stdio -- nosy: +georg.brandl status: closed -> o

[issue18964] test_tcl fails when _tkinter linked with Tcl 8.4

2013-10-27 Thread Georg Brandl
Georg Brandl added the comment: Ahh, the newly committed test for merge needs the same guard as the other 'dict' calls! I'll fix that in the release clone for 3.3.3 final. -- ___ Python tracker <http://bugs.pyt

[issue18964] test_tcl fails when _tkinter linked with Tcl 8.4

2013-10-28 Thread Georg Brandl
Georg Brandl added the comment: Should be done. -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue18964> ___ ___ Python-bugs-list mai

[issue19427] enhancement: dictionary maths

2013-10-28 Thread Georg Brandl
Georg Brandl added the comment: This specialized use case has no chance of being added to the very general dict object. But have a look at the collections.Counter class which does exactly what you propose for positive values and the +/- operations. -- nosy: +georg.brandl

[issue19428] marshal: error cases are not documented

2013-10-29 Thread Georg Brandl
Georg Brandl added the comment: Is this backportable? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue19428> ___ ___ Python-bugs-list mailin

[issue19446] Integer division for negative numbers

2013-10-30 Thread Georg Brandl
Georg Brandl added the comment: Hi Nitin, "a // b" is defined as the floor division operation, same as what "math.floor(a / b)" gives: the largest integer <= a / b. -7/2 is -3.5, the largest integer <= -3.5 is -4. -- nosy: +georg.brandl resolution: -> i

[issue19489] move quick search box above TOC

2013-11-03 Thread Georg Brandl
New submission from Georg Brandl: >From Mark Summerfield:, The Quick search box is really useful, but it is annoying that its position varies from page to page. On pages with long tables of contents it is often out of sight. Why not put it above the Table of Contents. That

[issue19501] Buildbot testing of 3.2 broken

2013-11-04 Thread Georg Brandl
Georg Brandl added the comment: I haven't looked at 3.2 buildbots since the last point release. There will be only security releases in the future, still it'd be nice to be able to test on different bots. Antoine, can you fix this on the buildmaster or need I apply the patch i

[issue19499] "import this" is cached in sys.modules

2013-11-05 Thread Georg Brandl
Georg Brandl added the comment: Whatever we decide to do here, it **must** also be done for antigravity.py. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue19

[issue19499] "import this" is cached in sys.modules

2013-11-05 Thread Georg Brandl
Georg Brandl added the comment: IMO the fact that importing happens only once is also a very important one, so much the better this helps in learning it early. The bad thing is that opening this.py to see what's happening will not really enlighten the beg

[issue19512] Avoid temporary Unicode strings, use identifiers to only create the string once

2013-11-07 Thread Georg Brandl
Georg Brandl added the comment: >> You mean for PyRun_InteractiveOneObject()? Oh, it can be made private, but >> what is the problem of adding yet another PyRun_Interactive*() function? >> There are already a lot of them :-) > And this is a problem. Newly added function i

[issue19504] Change "customise" to "customize".

2013-11-15 Thread Georg Brandl
Georg Brandl added the comment: Can be closed? -- nosy: +georg.brandl, vinay.sajip ___ Python tracker <http://bugs.python.org/issue19504> ___ ___ Python-bug

[issue19508] Add warning that Python doesn't verify SSL certs by default

2013-11-17 Thread Georg Brandl
Georg Brandl added the comment: Sounds good. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue19508> ___ ___ Python-bugs-list mailin

[issue19691] Weird wording in RuntimeError doc

2013-11-24 Thread Georg Brandl
Georg Brandl added the comment: I think so. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue19691> ___ ___ Python-bugs-list mailin

[issue19762] Incorrect function documentation of _get_object_traceback and _get_traces in _tracemalloc module

2013-11-24 Thread Georg Brandl
Georg Brandl added the comment: LGTM. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue19762> ___ ___ Python-bugs-list mailing list Unsub

<    31   32   33   34   35   36   37   38   39   40   >