[issue9584] Allow curly brace expansion

2012-11-09 Thread Tim Golden
Changes by Tim Golden : Removed file: http://bugs.python.org/file27894/0003-reworked-issue9584.patch ___ Python tracker ___ ___ Python-bugs-lis

[issue9584] Allow curly brace expansion

2012-11-09 Thread Tim Golden
Tim Golden added the comment: Given that this isn't going to go ahead in its current form, and will need wider discussion on python-dev, I'm unassigning myself and I've removed the flawed version of the patch which I'd posted. -- assignee: tim.golden -> __

[issue11313] Speed up default encode()/decode()

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: Agreed, closing. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed versions: +Python 3.4 ___ Python tracker _

[issue13301] the script Tools/i18n/msgfmt.py allows arbitrary code execution via po files

2012-11-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 058ff991bdcb by Ezio Melotti in branch '2.7': #13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka. http://hg.python.org/cpython/rev/058ff991bdcb New changeset 2fa338374719 by Ezio Melotti in branch '

[issue13301] the script Tools/i18n/msgfmt.py allows arbitrary code execution via po files

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- assignee: -> ezio.melotti resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue16444] Use support.TESTFN_UNDECODABLE on UNIX

2012-11-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Try b'\x81', b'\x98', b'\xae', b'\xd5', b'\xff'. They are undecodable in all 1-byte encodings. b'\x81' : shift_jis_2004 shift_jis shift_jisx0213 cp869 cp874 cp932 cp1250 cp1252 cp1253 cp1254 cp1255 cp1257 cp1258 b'\x98' : shift_jis_2004 shift_jis shift_jisx0

[issue16444] Use support.TESTFN_UNDECODABLE on UNIX

2012-11-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Try b'\xed\xb2\x80' and b'\xed\xb4\x80' for UTF-8 (on Unix and Mac OS X). b'\xed\xb2\x80' is b'\x80'.decode('utf-8', 'surrogateescape').encode('utf-8', 'surrogatepass'). b'\xed\xb4\x80' is '\udd00'.encode('utf-8', 'surrogatepass') and '\udd00' can't be encod

[issue16444] Use support.TESTFN_UNDECODABLE on UNIX

2012-11-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > The full test suite pass on: The matter is not only in the fact that tests passed. They should fail if the original bug occurs again. Have you tried to restore the bugs? -- ___ Python tracker

[issue16445] SEGFAULT when deleting Exception.message

2012-11-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The Coccinelle looks as an amazing tool! I propose split a patch on several patches (autogenerated code, attributes clearing, other pointer expressions (as *exceptionObject or unicode_latin1[i]) clearing, and local pointers clearing at the end) and commit th

[issue16447] SEGFAULT when setting type.__name__

2012-11-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Extension Modules, Interpreter Core stage: -> needs patch versions: +Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker

[issue16447] SEGFAULT when setting type.__name__

2012-11-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, the macro appropriate here. In Modules/zlibmodule.c this patterns should be fixed by patch for issue16350. -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue16335] Integer overflow in unicode-escape decoder

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: Tests would be good. You could use test.support.bigmemtest. -- ___ Python tracker ___ ___ Python-bugs

[issue16163] Wrong name in Lib/pkgutil.py:iter_importers

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: Given the lack of proper tests for iter_importers, wouldn't adding a proper test that returns something useful, rather than testing only with a non-existent module be better (this test could be kept, maybe converted to an assertRaises)? --

[issue16447] SEGFAULT when setting type.__name__

2012-11-09 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: - For the replacement with NULL, Py_CLEAR() should be used instead. - We should use a macro (Py_REF_ASSIGN?) for the replacement case. - Careful, in Modules/_json.c the code is wrong because tmp is already used:: PyObject *tmp = PyUnicode_AsEncod

[issue16163] Wrong name in Lib/pkgutil.py:iter_importers

2012-11-09 Thread Nick Coghlan
Nick Coghlan added the comment: OK, I thought that iter_importers was at least being tested indirectly by the tests for walk_packages: http://hg.python.org/cpython/file/default/Lib/test/test_runpy.py#l417 However, it turns out that iter_modules() only calls iter_importers() if you don't supply

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

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: In the root of the clone, with the doc already built in Doc/build (no need to rebuild it), do: hg import --no-c http://bugs.python.org/file27887/issue4965.diff cp Doc/tools/sphinxext/static/basic.css Doc/build/html/_static/basic.css firefox file://`pwd`/Doc/build/

[issue834840] Unhelpful error message from cgi module

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +akuchling, ezio.melotti type: enhancement -> behavior ___ Python tracker ___ ___ Python-bugs-list

[issue3154] "Quick search" box renders too wide if font size is large

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: I can't reproduce this with both the old (2.x) and new (3.x) themes on Firefox 16, so I'm closing this. If someone can still reproduce it, feel free to reopen it. -- resolution: -> out of date stage: needs patch -> committed/rejected status: open -> cl

[issue2454] sha and md5 fixer

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: What's the status of this? -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue15303] Minor revision to the method in Tkinter

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: Can you provide a patch in diff format? You can find more information about how to do it on the devguide. -- nosy: +ezio.melotti, gpolo stage: -> needs patch ___ Python tracker

[issue15480] Drop TYPE_INT64 from marshal in Python 3.4

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +larry priority: deferred blocker -> release blocker stage: -> needs patch type: -> behavior ___ Python tracker ___ _

[issue12907] Update test coverage devguide page

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- versions: -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue8843] urllib2 Digest Authorization uri must match request URI

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- versions: +Python 3.3, Python 3.4 -Python 2.6, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mail

[issue2818] pulldom cannot handle xml file with large external entity properly

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> needs patch versions: +Python 3.3, Python 3.4 -Python 3.1 ___ Python tracker ___ ___ Python-bug

[issue9156] socket._fileobject: read raises AttributeError when closed in another thread

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +pitrou stage: -> needs patch versions: +Python 2.7 -Python 2.6 ___ Python tracker ___ ___ Python-b

[issue9194] winreg:fixupMultiSZ should check that P < Q in the inner loop

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- versions: +Python 3.3, Python 3.4 -Python 2.6, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mail

[issue5550] urllib2 use of opener.addheaders

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- versions: +Python 3.3, Python 3.4 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue5888] mmap ehancement - resize with sequence notation

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- versions: +Python 3.4 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue6359] pyexpat.c calls trace function incorrectly for exceptions

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: Can you provide a patch? -- nosy: +ezio.melotti versions: +Python 3.3, Python 3.4 -Python 3.1 ___ Python tracker ___ __

[issue16089] _elementtree.TreeBuilder broken with a non-C-deriving element_factory

2012-11-09 Thread Dmitry Shachnev
Dmitry Shachnev added the comment: There are still some false-positive warnings caused by C code that affect docutils (see http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3555164&group_id=38414). Look at this traceback for exmaple: http://paste.ubuntu.com/1345164/ There, _Element

[issue16089] _elementtree.TreeBuilder broken with a non-C-deriving element_factory

2012-11-09 Thread Dmitry Shachnev
Changes by Dmitry Shachnev : ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/pyth

[issue16089] _elementtree.TreeBuilder broken with a non-C-deriving element_factory

2012-11-09 Thread Dmitry Shachnev
Changes by Dmitry Shachnev : ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/pyth

[issue6386] importing yields unexpected results when initial script is a symbolic link

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +brett.cannon, ncoghlan versions: +Python 3.3, Python 3.4 -Python 3.1 ___ Python tracker ___ ___ Pyt

[issue6709] It's possible to create TryExcept with no handlers

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +brett.cannon, georg.brandl, ncoghlan stage: -> needs patch versions: +Python 3.3, Python 3.4 -Python 3.1 ___ Python tracker ___ __

[issue6709] It's possible to create TryExcept with no handlers

2012-11-09 Thread Benjamin Peterson
Benjamin Peterson added the comment: This was fixed a while ago: Traceback (most recent call last): File "", line 1, in ValueError: Try has neither except handlers nor finalbody -- resolution: -> out of date status: open -> closed ___ Python trac

[issue15303] Minor revision to the method in Tkinter

2012-11-09 Thread Guilherme Polo
Guilherme Polo added the comment: Please include a short version of the widget class you mentioned. It must be only long enough to show the issue. -- ___ Python tracker ___

[issue14215] http://www.python.org/dev/peps/ title is python.org

2012-11-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Bump. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue2454] sha and md5 fixer

2012-11-09 Thread Meador Inge
Meador Inge added the comment: I haven't touched the patch since I attached it. I will refresh it today with the feedback given. -- ___ Python tracker ___ __

[issue16443] Add docstrings to regular expression match objects

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: Do you mean http://docs.python.org/2/library/re.html#match-objects ? This doesn't seem to say anything too useful. -- ___ Python tracker ___ _

[issue6709] It's possible to create TryExcept with no handlers

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: needs patch -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue16121] shlex.shlex.error_leader() reports incorrect line number

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti stage: -> needs patch type: -> behavior ___ Python tracker ___ ___ Python-bugs-list

[issue16335] Integer overflow in unicode-escape decoder

2012-11-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Removed file: http://bugs.python.org/file27741/decode_unicode_escape_overflow.patch ___ Python tracker ___ ___

[issue16335] Integer overflow in unicode-escape decoder

2012-11-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here are patches for different Python versions. Test added. Victor, now you can try it on 12GB. Unfortunately, I can't run the tests. -- Added file: http://bugs.python.org/file27933/decode_unicode_escape_overflow-3.3.patch Added file: http://bugs.p

[issue14010] deeply nested filter segfaults

2012-11-09 Thread Alex Gaynor
Alex Gaynor added the comment: Since the paste is dead: i = filter(bool, range(5)) for _ in range(100): i = filter(bool, i) for p in i: print(p) -- ___ Python tracker _

[issue13574] refresh example in doc for Extending and Embedding

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue15474] Differentiate decorator and decorator factory in docs

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- keywords: +easy nosy: +ezio.melotti stage: -> needs patch type: -> enhancement versions: +Python 3.4 ___ Python tracker ___ ___

[issue12217] Cross-link docs for faulthandler, traceback and pdb

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti type: -> enhancement versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-li

[issue10048] urllib.request documentation confusing

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- type: -> enhancement versions: +Python 3.3, Python 3.4 -Python 3.1 ___ Python tracker ___ ___ Python-bug

[issue16190] Misleading warning in random module docs

2012-11-09 Thread George Peristerakis
Changes by George Peristerakis : -- nosy: -George.Peristerakis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16441] range usage in gzip module leads to excessive memory usage.

2012-11-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset f938d478359a by Chris Withers in branch '2.7': Bug #16441: avoid excessive memory usage working with large gzip files http://hg.python.org/cpython/rev/f938d478359a -- nosy: +python-dev ___ Python tracker

[issue16009] Json error messages could provide more information about the error

2012-11-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Patch updated. Added new test cases as Ezio want.. -- Added file: http://bugs.python.org/file27936/json_errmsg_5.patch ___ Python tracker ___

[issue16441] range usage in gzip module leads to excessive memory usage.

2012-11-09 Thread Chris Withers
Chris Withers added the comment: Committed on 2.7 branch. -- stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue6359] pyexpat.c calls trace function incorrectly for exceptions

2012-11-09 Thread Ned Batchelder
Ned Batchelder added the comment: I have no idea why pyexpat.c invokes the trace function in the first place. Unless someone can explain why it does that when no other C extension does, my inclination would be to make it stop calling the trace function at all, not to fix how it calls it. ---

[issue9156] socket._fileobject: read raises AttributeError when closed in another thread

2012-11-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: I'm not sure there's really a point in making socket.makefile() objects thread-safe. In any case, making them thread-safe would probably require more than this small fix. -- ___ Python tracker

[issue16391] add "terminator" ctor argument to logging.StreamHandlers derived handlers

2012-11-09 Thread Vinay Sajip
Vinay Sajip added the comment: You can already do this with Python 3.2 (and hence with later Python 3.x): import logging.config def my_handler(*args, **kwargs): h = logging.StreamHandler(*args, **kwargs) h.terminator = '!\n' return h LOGGING = { 'version': 1, 'handlers': {

[issue16391] add "terminator" ctor argument to logging.StreamHandlers derived handlers

2012-11-09 Thread Vinay Sajip
Vinay Sajip added the comment: Note that you can also use the value 'ext://__main__.my_handler' for key '()'. -- assignee: -> vinay.sajip ___ Python tracker ___ __

[issue9156] socket._fileobject: read raises AttributeError when closed in another thread

2012-11-09 Thread Christian Heimes
Christian Heimes added the comment: I agree with Antoine. IMHO it's common knowledge that file and socket object aren't thread safe. All access to these objects must be synced with a lock. -- nosy: +christian.heimes ___ Python tracker

[issue9156] socket._fileobject: read raises AttributeError when closed in another thread

2012-11-09 Thread Mathias Panzenböck
Mathias Panzenböck added the comment: The problem is that the other thread is blocked, waiting for new client connections. A common pattern for very simple server applications (like you write during exercises at universities) is: 2 threads: 1. A server thread waiting for clients, maybe spawni

[issue9156] socket._fileobject: read raises AttributeError when closed in another thread

2012-11-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: > 2 threads: > 1. A server thread waiting for clients, maybe spawning even more > threads for each connection. > 2. A small shell thread reading commands from stdin. When "quit" is > read it closes the server socket, which shuts down the server (the > server th

[issue16424] regression: os.path.split('//hostname/foo/bar.txt')

2012-11-09 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue16427] Faster hash implementation

2012-11-09 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16248] Security bug in tkinter allows for untrusted, arbitrary code execution.

2012-11-09 Thread Zachary Ware
Zachary Ware added the comment: Here are a pair of trivial patches that implement Antoine's suggestion of not executing readprofile() if the -E flag is set. Current tests seem to pass, but there are no new tests included because frankly I'm not sure of either how to test it or where. Also, I

[issue16248] Security bug in tkinter allows for untrusted, arbitrary code execution.

2012-11-09 Thread Zachary Ware
Changes by Zachary Ware : Added file: http://bugs.python.org/file27938/issue16248-3.x.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue9156] socket._fileobject: read raises AttributeError when closed in another thread

2012-11-09 Thread Mathias Panzenböck
Mathias Panzenböck added the comment: Yeah, I don't remember anymore. It was so long ago. -- ___ Python tracker ___ ___ Python-bugs-lis

[issue16218] Python launcher does not support unicode characters

2012-11-09 Thread koobs
koobs added the comment: If there's not another revision of the test patch in the wings, can 56df0d4f0011 also be applied to 3.3, as tests are still failing on at least koobs-freebsd and koobs-freebsd-clang buildbots. -- nosy: +koobs ___ Python trac

[issue16447] SEGFAULT when setting type.__name__

2012-11-09 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16445] SEGFAULT when deleting Exception.message

2012-11-09 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue1020188] Use Py_CLEAR where necessary to avoid crashes

2012-11-09 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue16435] Python 3 doc link to Python 2 FAQ

2012-11-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset da0b3735be27 by Chris Jerdonek in branch '3.2': Improve FAQ link in documentation (for issue #16435). http://hg.python.org/cpython/rev/da0b3735be27 New changeset 3951264b0763 by Chris Jerdonek in branch '3.3': Merge from 3.2: improve FAQ link in doc

[issue16435] Python 3 doc link to Python 2 FAQ

2012-11-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5b3648f5e452 by Chris Jerdonek in branch '2.7': Backport from 3.2: improve FAQ link in documentation (for issue #16435). http://hg.python.org/cpython/rev/5b3648f5e452 -- ___ Python tracker

[issue9974] tokenizer.untokenize not invariant with line continuations

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

[issue16447] SEGFAULT when setting type.__name__

2012-11-09 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Yes, we should add a "Py_REPLACE()" macro. Sure. +1 to that. With this issue in mind, I wonder if there is any situation where "Py_DECREF/Py_XDECREF" must be used that can not be replace with "Py_CLEAR/Py_REPLACE". Is there any code that breaks if we replace

[issue16436] Link directly to set and frozenset in built-in function docs

2012-11-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 16fa6462dfe1 by Chris Jerdonek in branch '3.2': Link set and frozenset function docs to their class definitions (issue #16436). http://hg.python.org/cpython/rev/16fa6462dfe1 New changeset d534da27ca8b by Chris Jerdonek in branch '3.3': Merge from 3.

[issue16436] Link directly to set and frozenset in built-in function docs

2012-11-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 24db5292c2c9 by Chris Jerdonek in branch '2.7': Backport from 3.2: adjust set and frozenset function docs (issue #16436). http://hg.python.org/cpython/rev/24db5292c2c9 -- ___ Python tracker

[issue16436] Link directly to set and frozenset in built-in function docs

2012-11-09 Thread Chris Jerdonek
Chris Jerdonek added the comment: Fixed. Thanks a lot for the report, Yongzhi. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker _

[issue13538] Improve doc for str(bytesobject)

2012-11-09 Thread Chris Jerdonek
Chris Jerdonek added the comment: New patch incorporating Ezio's suggestions, along with some other changes. -- Added file: http://bugs.python.org/file27939/issue-13538-4-default.patch ___ Python tracker __

[issue11957] re.sub confusion between count and flags args

2012-11-09 Thread Eric Snow
Changes by Eric Snow : -- nosy: -eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue12082] Python/import.c still references fstat even with DONT_HAVE_FSTAT/!HAVE_FSTAT

2012-11-09 Thread Eric Snow
Changes by Eric Snow : -- versions: +Python 3.4 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue13912] ImportError using __import__ and relative level 1

2012-11-09 Thread Eric Snow
Eric Snow added the comment: Are you okay on this, Jason? -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list maili

[issue14080] Sporadic test_imp failure

2012-11-09 Thread Eric Snow
Eric Snow added the comment: Given that issue14657 wrapped up, I'm closing this issue too. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue13349] Non-informative error message in index() and remove() functions

2012-11-09 Thread Sean Ochoa
Sean Ochoa added the comment: Truncating repr strings to 100chars will require the patch from #7330. After applying the patch from that issue, my tests work fine. -- ___ Python tracker ___

[issue13349] Non-informative error message in index() and remove() functions

2012-11-09 Thread Sean Ochoa
Sean Ochoa added the comment: Updated patch after taking into account Ezio's (aka Taggnostr on #python-dev) latest feedback. -- Added file: http://bugs.python.org/file27940/issue13349.patch.2 ___ Python tracker __