[issue22619] Possible implementation of negative limit for traceback functions

2015-04-21 Thread Dmitry Kazakov
Dmitry Kazakov added the comment: Thanks, completely missed the abs(limit) part. Here's the updated documentation patch. -- Added file: http://bugs.python.org/file39161/traceback_limit_doc_rev.diff ___ Python tracker <http://bugs.py

[issue22619] Possible implementation of negative limit for traceback functions

2015-04-21 Thread Dmitry Kazakov
Changes by Dmitry Kazakov : Removed file: http://bugs.python.org/file39161/traceback_limit_doc_rev.diff ___ Python tracker <http://bugs.python.org/issue22619> ___ ___

[issue22619] Possible implementation of negative limit for traceback functions

2015-04-21 Thread Dmitry Kazakov
Changes by Dmitry Kazakov : Added file: http://bugs.python.org/file39162/traceback_limit_doc_rev2.diff ___ Python tracker <http://bugs.python.org/issue22619> ___ ___ Pytho

[issue22619] Possible implementation of negative limit for traceback functions

2015-04-22 Thread Dmitry Kazakov
Changes by Dmitry Kazakov : Added file: http://bugs.python.org/file39166/traceback_limit_doc_rev3.diff ___ Python tracker <http://bugs.python.org/issue22619> ___ ___ Pytho

[issue24125] Fix for #23865 breaks docutils

2015-05-04 Thread Dmitry Shachnev
New submission from Dmitry Shachnev: Fix for issue #23865 (i.e. https://hg.python.org/cpython/rev/f7ddec2e9e93 in 2.7 branch) introduced a change for xml.sax.expatreader.ExpatParser class that makes its close() method delete _parser object. This breaks docutils, which handles exceptions in

[issue23865] Fix possible leaks in close methods

2015-05-04 Thread Dmitry Shachnev
Dmitry Shachnev added the comment: This broke docutils, see issue #24125. -- nosy: +mitya57 ___ Python tracker <http://bugs.python.org/issue23865> ___ ___ Pytho

[issue24125] Fix for #23865 breaks docutils

2015-05-04 Thread Dmitry Shachnev
Changes by Dmitry Shachnev : -- nosy: +larry versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issue24125> ___ ___ Python-bugs-list mailin

[issue24125] Fix for #23865 breaks docutils

2015-05-05 Thread Dmitry Shachnev
Dmitry Shachnev added the comment: The patch fixes the issue, thanks Serhiy! -- ___ Python tracker <http://bugs.python.org/issue24125> ___ ___ Python-bugs-list m

[issue24216] Typo in bytes.join/bytearray.join documentation

2015-05-17 Thread Dmitry Kazakov
New submission from Dmitry Kazakov: This if there are any values in iterable that are note bytes-like objects should be if there are any values in iterable that are not bytes-like objects Here's a micropatch... -- assignee: docs@python components: Documentation

[issue24219] Repeated integer in Lexical analysis/Integer literals section

2015-05-17 Thread Dmitry Kazakov
New submission from Dmitry Kazakov: One of the integers under "Some examples of integer literals" is repeated twice: 7 21474836470o1770b100110111 3 79228162514264337593543950336 0o3770x1 7922816251426433759

[issue24219] Repeated integer in Lexical analysis/Integer literals section

2015-05-22 Thread Dmitry Kazakov
Dmitry Kazakov added the comment: Please, do tell me if I'm wrong deleting that literal and it actually serves some purpose... -- ___ Python tracker <http://bugs.python.org/is

[issue24269] Few improvements to the collections documentation

2015-05-23 Thread Dmitry Kazakov
New submission from Dmitry Kazakov: collections.Counter: Formatted the code in the "See also" section. collections.deque.remove: "Removed the first occurrence of value." -> "Remove ..." collections.deque.index (a followup from issue23704): Changed [,

[issue24275] lookdict_* give up too soon

2015-05-23 Thread Dmitry Kazakov
Changes by Dmitry Kazakov : -- nosy: +vlth ___ Python tracker <http://bugs.python.org/issue24275> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28314] ElementTree: Element.getiterator(tag) broken in 3.6

2016-09-29 Thread Dmitry Shachnev
New submission from Dmitry Shachnev: The documentation says that getiterator() still accepts a tag argument, but it does not: >>> from xml.etree.ElementTree import Element >>> el = Element('foo') >>> el.getiterator('bar') Traceback (most recent

<    1   2   3   4