[issue34446] ambiguous _max_size parameter in SpooledTemporaryFile

2019-07-07 Thread Andrew Scheller
Andrew Scheller added the comment: I agree that this is ambiguous behaviour. The docs at https://docs.python.org/3/library/tempfile.html#tempfile.SpooledTemporaryFile say "This function operates exactly as TemporaryFile() does, except that data is spooled in memory until the file

[issue32870] Documentation typo (2.x only) for deque.remove

2018-02-18 Thread Andrew Scheller
Change by Andrew Scheller <launch...@loowis.durge.org>: -- type: -> enhancement ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32870] Documentation typo (2.x only) for deque.remove

2018-02-18 Thread Andrew Scheller
Andrew Scheller <launch...@loowis.durge.org> added the comment: Looks like https://bugs.python.org/issue24269 is where this got fixed for the 3.x documentation ;-) -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32870] Documentation typo (2.x only) for deque.remove

2018-02-18 Thread Andrew Scheller
New submission from Andrew Scheller <launch...@loowis.durge.org>: https://docs.python.org/2/library/collections.html#collections.deque.remove says "Removed the first occurrence of value." I believe the "Removed" should be changed to just "Remove" ? (th

[issue25519] Minor difflib documentation bug

2015-10-30 Thread Andrew Scheller
New submission from Andrew Scheller: In the documentation for difflib.HtmlDiff.__init__ there's a couple of references to ``ndiff()``. I believe these should be modified to :func:`ndiff` (as used elsewhere in the difflib documentation) so that they get nicely hyperlinked in the HTML

[issue21198] Minor tarfile documentation bug

2014-04-14 Thread Andrew Scheller
Andrew Scheller added the comment: Éric - appears to be only Doc/library/tarfile.rst that is affected. Matt - looks like your simple patch contains a lot more than you intended?! -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue21221] Minor struct_time documentation bug

2014-04-14 Thread Andrew Scheller
New submission from Andrew Scheller: The documentation for time.struct_time (in Doc/library/time.rst) explains tm_isdst as 0, 1 or -1; see below but then doesn't really go into further detail below, other than to say A -1 argument as the daylight savings flag, passed to mktime() will usually

[issue21198] Minor tarfile documentation bug

2014-04-10 Thread Andrew Scheller
New submission from Andrew Scheller: I've just noticed that the documentation for TarInfo.type says To determine the type of a TarInfo object more conveniently, use the is_*() methods below. However none of the methods mentioned actually contain an underscore, so I believe the documentation

[issue15636] base64.decodebytes is only available in Python3.1+

2012-08-13 Thread Andrew Scheller
New submission from Andrew Scheller: According to the documentation ( http://docs.python.org/py3k/library/base64.html#base64.decodebytes ) both the decodebytes and the deprecated decodestring methods are available in the base64 module in Python3.x However in Python3.0 (I'm testing