summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [2.7] Fix signature of xml.dom.minidom.Document.toprettyxml(). (GH-10814). (G...E Kawashima2018-12-011-1/+1
* Replace 1/0 with 1//0 in tests to avoid Python 3 warns (GH-10833)Victor Stinner2018-11-303-3/+3
* bpo-33015: Use malloc() in PyThread_start_new_thread() (GH-10829)Victor Stinner2018-11-301-3/+3
* bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008) (GH-10823)Victor Stinner2018-11-302-4/+39
* bpo-35347: Fix test_socket.NonBlockingTCPTests (GH-10791) (GH-10817)Victor Stinner2018-11-301-24/+41
* Fix DeprecationWarning in test_bytes (GH-10805)Victor Stinner2018-11-301-2/+2
* bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808)Miss Islington (bot)2018-11-301-0/+1
* bpo-34021: Windows skips test_regrtest.test_env_changed() (GH-10804)Victor Stinner2018-11-291-0/+3
* bpo-34279, regrtest: Issue a warning if no tests have been executed (GH-10801)Victor Stinner2018-11-294-7/+130
* closes bpo-35340: Add freegrammar to pgenheaders.h. (GH-10788)Benjamin Peterson2018-11-291-0/+1
* pythoninfo: log more environment variable (GH-10719) (GH-10774)Victor Stinner2018-11-281-4/+45
* Linkify SMTP.quit() in smtplib documentation. (GH-9785)Miss Islington (bot)2018-11-231-1/+1
* [2.7] bpo-35035: Rename email.utils documentation to email.utils.rst (GH-1002...Julien Palard2018-11-223-1/+2
* bpo-31146: Don't fallback switcher to english on not-yet pusblished languages...Miss Islington (bot)2018-11-211-0/+6
* [2.7] bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039) (GH-...Serhiy Storchaka2018-11-202-81/+108
* Upgrade pip to 18.1 and setuptools to 40.6.2 (GH-10598)Miss Islington (bot)2018-11-195-2/+3
* Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576)Miss Islington (bot)2018-11-161-1/+3
* Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543)Miss Islington (bot)2018-11-151-2/+4
* [2.7] bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506) (G...Gregory P. Smith2018-11-142-1/+4
* [2.7] Grammar corrections in abc.rst (GH-10525). (GH-10535)Andrés Delfino2018-11-131-3/+3
* Linkify PEP 8 in unix.rst (GH-10482)Miss Islington (bot)2018-11-121-1/+1
* [2.7] bpo-33699: Describe try's else clause with the rest of the try clause (...Andrés Delfino2018-11-111-7/+5
* [2.7] bpo-35194: Fix a wrong constant in cp932 codec. (GH-10420) (GH-10433)Alexey Izbyshev2018-11-101-1/+1
* [2.7] Doc: Make all versions sidebars the same for consistency. (GH-10288) (G...Julien Palard2018-11-081-2/+3
* Add future_stmt to simple_stmt production list. (GH-8239)Miss Islington (bot)2018-11-071-0/+1
* glob uses fnmatch.filter instead of fnmatch since 2001. (GH-10102)Miss Islington (bot)2018-11-071-1/+1
* Add a reference to the name mangling description in the tutorial to the index...Miss Islington (bot)2018-11-071-0/+3
* Correct grammar mistakes in string.rst. (GH-9752)Miss Islington (bot)2018-11-071-2/+2
* closes bpo-35171: Fix test_TimeRE_recreation_timezone failure on some systems...Miss Islington (bot)2018-11-051-1/+1
* [2.7] bpo-35133: Fix mistakes when concatenate string literals on different l...Serhiy Storchaka2018-11-0515-23/+23
* [2.7] Docs: fix some wrong words (GH-6987) (GH-10315)Stéphane Wirtel2018-11-043-18/+74
* Fix a typo about a comma. (GH-10306)Miss Islington (bot)2018-11-031-1/+1
* [2.7] closes bpo-35139: The `pyexpat` module's macros in `Modules/Setup` now ...Benjamin Peterson2018-11-012-1/+2
* [2.7] bpo-32804: Include the context parameter in urlretrieve documentation (...Lysandros Nikolaou2018-11-011-2/+15
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Miss Islington (bot)2018-10-313-1/+13
* bpo-34866: Add max_num_fields to cgi.FieldStorage (GH-9660) (GH-9969)matthewbelisle-wf2018-10-306-19/+127
* [2.7] Fix a possible "double decref" in termios.tcgetattr(). (GH-10194) (GH-1...Zackery Spytz2018-10-291-2/+2
* bpo-27741: Better wording for datetime.strptime() (GH-9994)Miss Islington (bot)2018-10-291-1/+3
* [2.7] bpo-35068: Fix possible crashes in pyexpat.c. (GH-10099)Zackery Spytz2018-10-291-17/+11
* [2.7] Fix checking for bugfix Tcl version. (GH-10185). (GH-10188)Serhiy Storchaka2018-10-281-2/+2
* [2.7] bpo-34794: Fix a leak in Tkinter. (GH-10025) (GH-10181)Serhiy Storchaka2018-10-282-4/+4
* [2.7] unittest documentation: Spell pytest without the dot (GH-9820) (GH-10157)Mariatta2018-10-271-1/+1
* bpo-35079: Revise difflib.SequenceManager.get_matching_blocks doc (GH-10144)Miss Islington (bot)2018-10-262-3/+6
* bpo-35017, socketserver: don't accept request after shutdown (GH-9952) (GH-10...Denis Ledoux2018-10-262-0/+6
* [3.7] bpo-34789: xml.sax.make_parser expects a list not just any sequence (GH...Miss Islington (bot)2018-10-261-1/+1
* [2.7] bpo-34576 : Backport eeab510 2.7 (#10115)Senthil Kumaran2018-10-261-0/+4
* [2.7] Fix error handling bugs in _elementtree.c. (GH-10060) (GH-10080)Zackery Spytz2018-10-261-28/+37
* [2.7] bpo-34260, shutil: fix copy2 and copystat documentation (GH-8523) (GH-1...Zsolt Cserna2018-10-242-5/+16
* bpo-33899: Revert tokenize module adding an implicit final NEWLINE (GH-10072)Tal Einat2018-10-243-47/+12
* [2.7] bpo-34748: link to :ref:`partial-objects` in functools.partial doc. (GH...Xiang Zhang2018-10-231-3/+3