summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-33251: Prevent ConfigParser.items returning items present in vars. (#6446)Chris Bradbury2018-04-231-0/+2
* bpo-33329: Fix multiprocessing regression on newer glibcs (GH-6575)Antoine Pitrou2018-04-231-0/+1
* bpo-991266: Fix quoting of Comment attribute of SimpleCookie (GH-6555)Berker Peksag2018-04-221-0/+1
* Clarify that __path__ can't be just any value (GH-6554)Brett Cannon2018-04-201-0/+1
* bpo-25427: Remove pyvenv (GH-5962)Brett Cannon2018-04-201-0/+3
* bpo-33131: Upgrade ensurepip to bundle pip 10.0.1 (GH-6546)Paul Moore2018-04-201-0/+1
* bpo-32232: by default, Setup modules are no longer built with -DPy_BUILD_CORE...xdegaye2018-04-201-0/+3
* bpo-33312: Fix clang ubsan out of bounds warnings in dict. (GH-6537)Gregory P. Smith2018-04-201-0/+3
* bpo-33189: pygettext.py now accepts only literal strings (GH-6364)Serhiy Storchaka2018-04-191-0/+2
* bpo-31583: Fix 2to3 for using with --add-suffix option (GH-3758)Denis Osipov2018-04-181-0/+2
* bpo-33308: Fix a crash in the parser module when convert an ST object. (#6519)Serhiy Storchaka2018-04-181-0/+2
* bpo-11594: Ensure line-endings are respected when using 2to3 (GH-6483)Aaron Ang2018-04-171-0/+1
* bpo-33144: random.Random and subclasses: split _randbelow implementation (GH-...Wolfgang Maier2018-04-171-0/+4
* bpo-33205: dict: Change GROWTH_RATE to `used*3` (GH-6350)INADA Naoki2018-04-171-0/+3
* [lib2to3] Make grammar pickling faster (#6491)Łukasz Langa2018-04-171-0/+1
* acks += Zsolt Dollenstein (#6490)Łukasz Langa2018-04-162-0/+2
* bpo-33270: Intern names for all anonymous code objects (#6472)Zackery Spytz2018-04-151-0/+1
* bpo-33185: Improve wording and markup (GH-6477)Nick Coghlan2018-04-151-3/+3
* bpo-33185: Fix regression in pydoc CLI sys.path handling (GH-6419)Nick Coghlan2018-04-151-0/+5
* bpo-33176: Add a toreadonly() method to memoryviews. (GH-6466)Antoine Pitrou2018-04-141-0/+1
* bpo-33184: Update Windows installer to OpenSSL 1.1.0h (GH-6463)Steve Dower2018-04-141-0/+1
* bpo-33265: use an actual method instead of a method-like function in ExitStac...jdemeyer2018-04-131-0/+2
* bpo-33097: Fix submit accepting callable after executor shutdown by interpret...Mark Nemec2018-04-101-0/+2
* bpo-31920: Fixed handling directories as arguments in the ``pygettext`` scrip...Serhiy Storchaka2018-04-092-0/+3
* bpo-32759: Free unused arenas in multiprocessing.heap (GH-5827)Antoine Pitrou2018-04-091-0/+1
* bpo-29613: Added support for SameSite cookies (GH-6413)Alex Gaynor2018-04-072-0/+3
* bpo-33201: Modernize "Extension types" doc (GH-6337)Antoine Pitrou2018-04-071-0/+1
* bpo-33184: Update macOS installer build to use OpenSSL 1.1.0h. (GH-6407)Ned Deily2018-04-071-0/+1
* bpo-8243: Doc patch for curses.window.addstr and curses.window.addch (GH-5179)Jay Crotts2018-04-071-0/+2
* bpo-33169: Remove values of `None` from sys.path_importer_cache when invalida...Brett Cannon2018-04-061-0/+2
* bpo-29673: fix gdb scripts pystack and pystackv (GH-6126)Marcel Plch2018-04-063-7/+9
* bpo-33231: Fix potential leak in normalizestring() (GH-6386)INADA Naoki2018-04-061-0/+1
* bpo-33224: PEP 479 fix for difflib.mdiff() (GH-6381)Raymond Hettinger2018-04-051-0/+2
* bpo-15817: Expose command documentation to gdb help (GH-6384)Skip Montanaro2018-04-051-11/+25
* bpo-33203: Ensure random.choice always raises IndexError on empty sequence (G...Wolfgang Maier2018-04-051-0/+3
* bpo-23403: Bump pickle.DEFAULT_PROTOCOL to 4 (#6355)Łukasz Langa2018-04-041-0/+4
* bpo-33195: Doc: Deprecate Py_UNICODE in c-api/arg (GH-6329)INADA Naoki2018-04-041-0/+3
* bpo-32337: Update documentats about dict order (GH-4973)hui shang2018-04-042-0/+2
* bpo-33209: End framing at the end of C implementation of pickle.Pickler.dump(...Serhiy Storchaka2018-04-031-0/+1
* bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341)INADA Naoki2018-04-031-0/+2
* bpo-29922: Improve error messages in 'async with' (GH-6352)Serhiy Storchaka2018-04-021-0/+2
* bpo-33204: IDLE - revise and extend colorizer test. (GH-6347)Terry Jan Reedy2018-04-021-2/+2
* bpo-33204: IDLE: consistently color invalid string prefixes (#6344)Terry Jan Reedy2018-04-021-0/+3
* bpo-33182: Fix pointer types in _testembed (GH-6310)Nick Coghlan2018-03-301-0/+1
* bpo-33175: dataclasses should look up __set_name__ on class, not instance (GH...Eric V. Smith2018-03-291-0/+2
* bpo-32726: macOS 10.6+ installer now builds Tcl/TK 8.6 (GH-6307)Ned Deily2018-03-291-0/+5
* FIX documentation and NEWS of ThreadedHTTPServer. (GH-6207)Julien Palard2018-03-281-1/+1
* Fix duplicating words words. (GH-6296)Serhiy Storchaka2018-03-282-2/+2
* bpo-33126: Document PyBuffer_ToContiguous() (#6292)Antoine Pitrou2018-03-281-0/+1
* s/the the/the/ (GH-6287)INADA Naoki2018-03-281-1/+1