[issue2202] urllib2 fails against IIS 6.0 (No support for MD5-sess auth)

2016-02-18 Thread Mathieu Dupuy
Mathieu Dupuy added the comment: python current -- Added file: http://bugs.python.org/file41950/md5-sess_not_implem_cur_v2.diff ___ Python tracker ___

[issue2202] urllib2 fails against IIS 6.0 (No support for MD5-sess auth)

2016-02-18 Thread Mathieu Dupuy
Mathieu Dupuy added the comment: python 2.7 -- Added file: http://bugs.python.org/file41949/md5-sess_not_implem_27_v2.diff ___ Python tracker ___

[issue26378] Typo in regex documentation

2016-02-18 Thread Georg Brandl
Georg Brandl added the comment: Thanks for the report! -- nosy: +georg.brandl ___ Python tracker ___ ___

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-18 Thread Aymeric Augustin
Aymeric Augustin added the comment: martin.panter: of course, I'm fine with integrating that code into Python. deronnax: could you create a ticket on https://code.djangoproject.com/ highlighting the differences between Django's original implementation and the improved version that you worked

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-18 Thread SilentGhost
SilentGhost added the comment: Mathieu, nothing was attached. The penalty's worth only a few if statements, I wouldn't worry too much about it. Besides, a C version is going to be provided as well, right? Perhaps the following approach might solve the subclasses problem: regex =

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-18 Thread Mathieu Dupuy
Mathieu Dupuy added the comment: crap, here is the attachment. Yeah, but I really would like to use regex in the C version (unless you strongly disadvise), so we will have the same logic and the same problem. And I never made a patch for the C interpreter itself, so the C equivalent is not

[issue26302] cookies module allows commas in keys

2016-02-18 Thread Jason R. Coombs
Jason R. Coombs added the comment: Looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue26049] Poor performance when reading large xmlrpc data

2016-02-18 Thread Cédric Krier
Cédric Krier added the comment: ping -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-18 Thread SilentGhost
SilentGhost added the comment: Probably only other solution that I see is to add the third argument, an actual class, e.g.: _parse_isodatetime(cls, string, datetime) -- ___ Python tracker

[issue26360] Deadlock in thread.join on Python 2.7/Mac OS X 10.9

2016-02-18 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks, Ned. I tried with: ./configure --with-pydebug MACOSX_DEPLOYMENT_TARGET=10.9 && make I'm still able to reproduce. I plan to find some time this weekend to dig into the source and see if I can narrow down the cause (or at least make the hang easier

[issue26379] zlib decompress as_bytearray flag

2016-02-18 Thread Martin Panter
Martin Panter added the comment: This is an unusual technique. I can’t think of any other standard library routine that returns a new bytearray instead of a bytes object. Normally there are sister functions with an -into() suffix that accept a pre-allocated buffer. Examples are

[issue2202] urllib2 fails against IIS 6.0 (No support for MD5-sess auth)

2016-02-18 Thread Martin Panter
Martin Panter added the comment: I do wonder if NotImplementedError is the right exception. According to the documentation it is derived from RuntimeError and is meant for abstract methods, i.e. it is a programmer error. Other cases in urllib.request raise ValueError (e.g.

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-18 Thread Martin Panter
Martin Panter added the comment: Did you see my class attributes suggestion a couple messages back? That might solve your dispatch problem: def _parse_isodatetime(cls, string): match = cls._iso_regex.match(...) class time: _iso_regex = re.compile(...) # or time._iso_regex =

[issue26309] socketserver.BaseServer._handle_request_noblock() doesn't shutdown request if verify_request is False

2016-02-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 651a6d47bc78 by Martin Panter in branch '3.5': Issue #26309: Shut down socketserver request if verify_request() is false https://hg.python.org/cpython/rev/651a6d47bc78 New changeset 0768edf5878d by Martin Panter in branch 'default': Issue #26309:

[issue26323] Add a assert_called() method for mock objects

2016-02-18 Thread STINNER Victor
STINNER Victor added the comment: I reviewed your patch. -- ___ Python tracker ___ ___ Python-bugs-list

[issue26309] socketserver.BaseServer._handle_request_noblock() doesn't shutdown request if verify_request is False

2016-02-18 Thread Martin Panter
Martin Panter added the comment: For the Python 2 version I had to make some small changes to the test. I used indirection instead of “nonlocal”, and replaced the super() call because the classes are apparently the wrong kind for super(). -- resolution: -> fixed stage: patch review

[issue26323] Add a assert_called() method for mock objects

2016-02-18 Thread Amit Saha
Amit Saha added the comment: Thanks for the review. Updated patch addressing the comments. -- ___ Python tracker ___

[issue26381] Add 'geo' URI scheme (RFC 5870) to urllib.parse.uses_params

2016-02-18 Thread Serhiy Int
Changes by Serhiy Int : -- components: Library (Lib) nosy: Serhiy Int priority: normal severity: normal status: open title: Add 'geo' URI scheme (RFC 5870) to urllib.parse.uses_params versions: Python 3.6 ___ Python tracker

[issue26323] Add a assert_called() method for mock objects

2016-02-18 Thread Amit Saha
Amit Saha added the comment: Updated patch -- Added file: http://bugs.python.org/file41952/issue26323.patch ___ Python tracker ___

[issue26323] Add assert_called() and assert_called_once() methods for mock objects

2016-02-18 Thread Amit Saha
Changes by Amit Saha : -- title: Add a assert_called() method for mock objects -> Add assert_called() and assert_called_once() methods for mock objects ___ Python tracker

[issue1731717] race condition in subprocess module

2016-02-18 Thread Krishna Oza
Krishna Oza added the comment: Hi, Could anyone help here to identify in which Python release the bug is fixed. I am unable to deduce from the bug tracker interface in which release this issue is fixed. Regards. -- nosy: +Krishna Oza ___ Python

[issue26382] List object memory allocator

2016-02-18 Thread Catalin Gabriel Manciu
New submission from Catalin Gabriel Manciu: Hi All, This is Catalin from the Server Scripting Languages Optimization Team at Intel Corporation. I would like to submit a patch that replaces the 'malloc' allocator used by the list object (Objects/listobject.c) with the small object allocator

[issue26382] List object memory allocator

2016-02-18 Thread Catalin Gabriel Manciu
Changes by Catalin Gabriel Manciu : Added file: http://bugs.python.org/file41954/listobject_CPython2.patch ___ Python tracker

[issue25532] infinite loop when running inspect.unwrap over unittest.mock.call

2016-02-18 Thread Florian Bruhin
Florian Bruhin added the comment: FWIW, this also affects pytest users: https://github.com/pytest-dev/pytest/issues/1217 -- nosy: +The Compiler ___ Python tracker

[issue26383] number of decimal places in csv output

2016-02-18 Thread Florin Papa
New submission from Florin Papa: Hi, This is Florin Papa from the Dynamic Scripting Languages Optimizations Team at Intel Corporation. This patch checks whether the benchmark measurement that will be included in the csv output has more than 3 of the first decimal places equal to 0 and

[issue26383] benchmarks (perf.py): number of decimal places in csv output

2016-02-18 Thread STINNER Victor
Changes by STINNER Victor : -- title: number of decimal places in csv output -> benchmarks (perf.py): number of decimal places in csv output ___ Python tracker

[issue26367] importlib.__import__ does not fail for invalid relative import

2016-02-18 Thread Manuel Jacob
Manuel Jacob added the comment: (For some reason, I forgot to submit the previous comment). The attached patches fix the issue (one for the 3.5 branch, one for the default branch) by bringing importlib.__import__ closer to the builtin __import__. The extra code in the default / 3.6 branch is

[issue16915] mode of socket.makefile is more limited than documentation suggests

2016-02-18 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report and for the patch. I would prefer to keep the code simple so I just applied documentation changes with a minor tweak. -- assignee: -> docs@python components: +Documentation -Library (Lib) nosy: +berker.peksag, docs@python

[issue16915] mode of socket.makefile is more limited than documentation suggests

2016-02-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset a7391c31ec4e by Berker Peksag in branch '3.5': Issue #16915: Clarify that mode parameter of socket.makefile() does not accept https://hg.python.org/cpython/rev/a7391c31ec4e New changeset bbfbde6ee9d0 by Berker Peksag in branch 'default': Issue

[issue26384] UnboundLocalError in socket._sendfile_use_sendfile

2016-02-18 Thread Berker Peksag
New submission from Berker Peksag: I noticed this while working on issue 16915: Traceback (most recent call last): ... File "/home/berker/projects/cpython/default/Lib/socket.py", line 262, in _sendfile_use_sendfile raise _GiveupOnSendfile(err) # not a regular file UnboundLocalError:

[issue25532] infinite loop when running inspect.unwrap over unittest.mock.call

2016-02-18 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> needs patch type: -> behavior ___ Python tracker ___

[issue26380] Add an http method enum

2016-02-18 Thread Ethan Furman
Ethan Furman added the comment: I don't have a firm opinion at this point -- can you give a few examples of how this will help in code? -- nosy: +ethan.furman ___ Python tracker

[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-18 Thread Eugene Viktorov
New submission from Eugene Viktorov: When calling the tempfile.NamedTemporaryFile with mode='wr' or with any other wrong value for "mode", it raises the ValueError and silently leaves an unknown, just created file on the file system. -- components: Library (Lib) files: temp_file.py

[issue26382] List object memory allocator

2016-02-18 Thread STINNER Victor
STINNER Victor added the comment: Instead of modifying individual files, I proposed to modify PyMem_Malloc to use PyObject_Malloc allocator: issue #26249. But the patch for Python 2 still makes sense. -- nosy: +haypo ___ Python tracker

[issue26366] Use “.. versionadded” over “.. versionchanged” where appropriate

2016-02-18 Thread Tony R.
Tony R. added the comment: > My weak opinion is that a new parameter is a new API item, not just a change > in behaviour, so should probably have “versionadded”. This was my reasoning as well. Also, when I noticed so many instances of ``.. versionchanged`` that all say “Added the *x*

[issue26386] tkinter - Treeview - .selection_add and selection_toggle

2016-02-18 Thread George
New submission from George: Id's with spaces in them causes a crash when using the .selection* methods Treeview. Version of ttk.py "0.3.1" dated 12/6/2015. Traceback line numbers are 1415 then 1395 Either of these lines of code, where the item id is "2009 Report.pdf" crash allParents =

[issue19251] bitwise ops for bytes of equal length

2016-02-18 Thread Марк Коренберг
Марк Коренберг added the comment: in order to increase perofrmance even more, use block operation on bytes. I.e. Xor by 8 bytes first (on 64-bit system) while size remainig is bigger or equal to 8, then by 4 bytes using same loop, and then xor remaining bytes by one byte. This will increase

[issue26360] Deadlock in thread.join on Python 2.7/Mac OS X 10.9

2016-02-18 Thread Mark Dickinson
Mark Dickinson added the comment: A minor update: I did manage to verify that the GIL is indeed not held by any threads at the moment of the hang, so it does look very much as though a `pthread_cond_signal` signal has gone astray somehow. -- ___

[issue26387] Race condition in sqlite module

2016-02-18 Thread Filipp Andjelo
New submission from Filipp Andjelo: Race condition in sqlite close/dealloc crashes the application with double free(). The pointer is set to NULL outside of mutexed zone, so if close and dealloc follow each other very shortly application crashes. Please see the attached patch. --

[issue26387] Race condition in sqlite module

2016-02-18 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules nosy: +ghaering versions: -Python 3.2, Python 3.3 ___ Python tracker ___

[issue18454] distutils crashes when uploading to PyPI having only the username (no pw) defined

2016-02-18 Thread Jason R. Coombs
Jason R. Coombs added the comment: I've recently taken a different tack to this issue with setuptools 20.1, which will resolve the password from a keyring if available. -- ___ Python tracker

[issue26149] Suggest PyCharm Community as an editor for Unix platforms

2016-02-18 Thread Anish Shah
Changes by Anish Shah : -- nosy: +anish.shah ___ Python tracker ___ ___

[issue26386] tkinter - Treeview - .selection_add and selection_toggle

2016-02-18 Thread Anish Shah
Changes by Anish Shah : -- nosy: +anish.shah ___ Python tracker ___ ___

[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-18 Thread SilentGhost
SilentGhost added the comment: Here is a naïve fix including a test. -- keywords: +patch nosy: +SilentGhost, georg.brandl stage: -> patch review versions: +Python 3.5, Python 3.6 Added file: http://bugs.python.org/file41959/issue26385.diff ___

[issue26381] Add 'geo' URI scheme (RFC 5870) to urllib.parse.uses_params

2016-02-18 Thread SilentGhost
New submission from SilentGhost: Here is the spec: https://tools.ietf.org/html/rfc5870#section-3.3 -- nosy: +SilentGhost, orsenthil ___ Python tracker

[issue26374] concurrent_futures Executor.map semantics better specified in docs

2016-02-18 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +bquinlan ___ Python tracker ___

[issue26370] shelve filename inconsistent between platforms

2016-02-18 Thread SilentGhost
SilentGhost added the comment: Would you like to try to submit a patch for a solution you think most appropriate? -- nosy: +SilentGhost, georg.brandl type: behavior -> enhancement versions: +Python 3.6 -Python 3.5 ___ Python tracker

[issue26374] concurrent_futures Executor.map semantics better specified in docs

2016-02-18 Thread Mark Dickinson
Mark Dickinson added the comment: The documentation says: "Equivalent to map(func, *iterables)". I believe that that equivalency implies that the ordering *is* defined, so it would be incorrect to add "order of results is undefined" to the documentation. -- nosy: +mark.dickinson

[issue26374] concurrent_futures Executor.map semantics better specified in docs

2016-02-18 Thread Mark Dickinson
Mark Dickinson added the comment: Note also this code snippet from PEP 3148: for number, prime in zip(PRIMES, executor.map(is_prime, PRIMES)): The use of zip here suggests strongly that the intention is that the order of the `map`

[issue26380] Add an http method enum

2016-02-18 Thread Demian Brecht
Demian Brecht added the comment: > I don't have a firm opinion at this point -- can you give a few examples of > how this will help in code? It'll help solely with consistency across projects. Generally, using constants are generally favored over using hardcoded values. Mainly, it helps

[issue26379] zlib decompress as_bytearray flag

2016-02-18 Thread Joe Jevnik
Joe Jevnik added the comment: The recipe you showed looks like it is very complicated for the expected use case of decompressing all of the data into a mutable buffer. One difference I see with this and struct.pack_into or socket.recv_into is that in both of those cases we know how large our

[issue26380] Add an http method enum

2016-02-18 Thread Martin Panter
Martin Panter added the comment: I can see the advantage of using an enum over a plain string. But you only get an error at run time, not compile time, if you misspell it. And there is also the disadvantage of the extra boilerplate of importing HTTPMessage. So I don’t have a strong opinion

[issue26388] Disabling changing sys.argv[0] with runpy.run_module(...alter_sys=True)

2016-02-18 Thread Mike Kaplinskiy
New submission from Mike Kaplinskiy: For the purposes of pex (https://github.com/pantsbuild/pex), it would be useful to allow calling run_module without sys.argv[0] changing. In general, this behavior is useful if the script intends to re-exec itself (so it needs to know the original

[issue26388] Disabling changing sys.argv[0] with runpy.run_module(...alter_sys=True)

2016-02-18 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list

[issue26367] importlib.__import__ does not fail for invalid relative import

2016-02-18 Thread Brett Cannon
Brett Cannon added the comment: The corresponding code in C that actually does the check: https://hg.python.org/cpython/file/default/Python/import.c#l1498 Manuel, can you sign the CLA at https://www.python.org/psf/contrib/contrib-form/ ? Once you sign it I can officially review your patch,

[issue26389] Expand traceback module API to accept just an exception as an argument

2016-02-18 Thread Brett Cannon
New submission from Brett Cannon: When reading https://docs.python.org/3/library/traceback.html#traceback.print_exception I noticed that everything takes a traceback or a set of exception type, instance, and traceback. But since Python 3.0 all of that information is contained in a single

[issue26367] importlib.__import__ does not fail for invalid relative import

2016-02-18 Thread Manuel Jacob
Manuel Jacob added the comment: Done. I'm a bit surprised this wasn't necessary for my previous two patches, but they were even more trival than this one. ;) Do we have to wait until my tracker profile is updated? -- ___ Python tracker

[issue26323] Add assert_called() and assert_called_once() methods for mock objects

2016-02-18 Thread Amit Saha
Amit Saha added the comment: Updated patch with docs and addressed review comments. -- Added file: http://bugs.python.org/file41961/issue26323.patch ___ Python tracker

[issue26380] Add an http method enum

2016-02-18 Thread Demian Brecht
Demian Brecht added the comment: > I can see the advantage of using an enum over a plain string. But you only > get an error at run time, not compile time, if you misspell it. Sure, but at least you're giving static analysis utilities the chance to catch it up front. > And there is also the

[issue26380] Add an http method enum

2016-02-18 Thread Demian Brecht
Demian Brecht added the comment: > BTW I think it is actually OPTIONS; see review comment. Well, don't I feel silly. Fixed. -- Added file: http://bugs.python.org/file41962/issue26380_2.patch ___ Python tracker

[issue26390] hashlib's pbkdf2_hmac documentation "rounds" does not match source

2016-02-18 Thread Daan Bakker
New submission from Daan Bakker: The documentation for pbkdf2_hmac at https://docs.python.org/3/library/hashlib.html uses the "rounds" keyword: hashlib.pbkdf2_hmac(name, password, salt, rounds, dklen=None) However, the actual source code uses "iterations". No-one has probably noticed it

[issue26367] importlib.__import__ does not fail for invalid relative import

2016-02-18 Thread Brett Cannon
Brett Cannon added the comment: If a contribution is insignificant enough then technically a CLA isn't necessary, but I just make it a habit to ask for one regardless. And your profile will probably get updated fairly quickly, so I wouldn't worry about it holding anything up (I'm hoping to

[issue26388] Disabling changing sys.argv[0] with runpy.run_module(...alter_sys=True)

2016-02-18 Thread Eric Snow
Eric Snow added the comment: python-dev thread: https://mail.python.org/pipermail/python-dev/2016-February/143374.html Notably: https://github.com/pantsbuild/pex/pull/211 -- nosy: +eric.snow ___ Python tracker

[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-18 Thread Martin Panter
Martin Panter added the comment: This looks like an extension of Issue 21058. Does the unlink() work on Windows? It seems to me that the file is configured to remove itself on close(), therefore I expect unlink() will raise an exception of its own. Also made some suggestions in the code

[issue26390] hashlib's pbkdf2_hmac documentation "rounds" does not match source

2016-02-18 Thread Martin Panter
Martin Panter added the comment: Thanks for the patch. The documentation still mentions *rounds* in one place, which I presume was meant to be a direct reference to the parameter. -- nosy: +martin.panter stage: -> patch review versions: -Python 3.4

[issue26381] Add 'geo' URI scheme (RFC 5870) to urllib.parse.uses_params

2016-02-18 Thread Martin Panter
Martin Panter added the comment: Sounds reasonable to me, and thanks for the reference. But it would be nice to find a way for this to work sensibly with arbitrary schemes, in the same spirit as Issue 18828. Would it break anything if we removed the uses_params list altogether? I notice it

[issue26309] socketserver.BaseServer._handle_request_noblock() doesn't shutdown request if verify_request is False

2016-02-18 Thread Martin Panter
Martin Panter added the comment: Some of the buildbots failed (e.g. ). I think the server is run in a separate thread, and the problem is a race between shutdown_request() being called and

[issue26280] ceval: Optimize list

2016-02-18 Thread Zach Byrne
Zach Byrne added the comment: Is it worth handling the exception, or just let it take the slow path and get caught by PyObject_GetItem()? We're still making sure the index is in bounds. Also, where would be an appropriate place to put a macro for adjusting negative indices? --

[issue26309] socketserver.BaseServer._handle_request_noblock() doesn't shutdown request if verify_request is False

2016-02-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset cba717fa8e10 by Martin Panter in branch '2.7': Issue #26309: Rewrite test in main thread and avoid race condition https://hg.python.org/cpython/rev/cba717fa8e10 New changeset 537608bafa5a by Martin Panter in branch '3.5': Issue #26309: Rewrite test

[issue5824] SocketServer.DatagramRequestHandler Broken under Linux

2016-02-18 Thread Martin Panter
Martin Panter added the comment: Here is a patch to enable the Unix domain DatagramRequestHandler tests, and bind the client to a socket name. Tests pass for me on Linux :) The Python 2 version will need to have lowercase socketserver changed case to camel-case SocketServer. --

[issue5824] SocketServer.DatagramRequestHandler Broken under Linux

2016-02-18 Thread Martin Panter
Changes by Martin Panter : Removed file: http://bugs.python.org/file41964/bind-unix.patch ___ Python tracker ___

[issue5824] SocketServer.DatagramRequestHandler Broken under Linux

2016-02-18 Thread Martin Panter
Changes by Martin Panter : Added file: http://bugs.python.org/file41965/bind-unix.patch ___ Python tracker ___

[issue15608] Improve socketserver doc

2016-02-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8b71cd67f548 by Martin Panter in branch '3.5': Issue #15608: Improve socketserver module documentation https://hg.python.org/cpython/rev/8b71cd67f548 New changeset fbb8b634fe59 by Martin Panter in branch 'default': Issue #15608: Merge socketserver

[issue15608] Improve socketserver doc

2016-02-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9211b7e60c92 by Martin Panter in branch '2.7': Issue #15608: Improve socketserver module documentation https://hg.python.org/cpython/rev/9211b7e60c92 -- ___ Python tracker

[issue15608] Improve socketserver doc

2016-02-18 Thread Martin Panter
Changes by Martin Panter : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 2.7, Python 3.6 -Python 3.4 ___ Python tracker

[issue16823] Python quits on running tkinter code with threads

2016-02-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: If I understand the test code, it creates the tk window in thread 0 (the main thread), generates data in thread 1, sends data via a queue to thread 2, which then inserts it into the Text widget. I ran a 3.x version up to 34000 iterations. When I comment out

[issue16823] Python quits on running tkinter code with threads

2016-02-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.5 -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker ___

[issue23430] socketserver.BaseServer.handle_error() should not catch exiting exceptions

2016-02-18 Thread Martin Panter
Martin Panter added the comment: Thanks for the reivew Berker. I have merged the patch with recent changes and updated according to your comments. -- Added file: http://bugs.python.org/file41967/socketserver-exit.v6.patch ___ Python tracker

[issue26374] concurrent_futures Executor.map semantics better specified in docs

2016-02-18 Thread Mark Dickinson
Changes by Mark Dickinson : -- assignee: -> docs@python components: +Documentation -Library (Lib) nosy: +docs@python ___ Python tracker

[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-18 Thread SilentGhost
SilentGhost added the comment: I wonder if Victor could clarify why bare except wasn't used in the python3 version. Anyway, here is the updated patch testing for TypeError as well. -- nosy: +haypo Added file: http://bugs.python.org/file41968/issue26385_2.diff

[issue20169] random module doc page has broken links

2016-02-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2d8e8d0e7162 by Georg Brandl in branch '2.7': Closes #20169: fix inner links random doc. https://hg.python.org/cpython/rev/2d8e8d0e7162 New changeset 426ac89548b3 by Georg Brandl in branch '3.5': Closes #20169: fix inner links random doc.