summaryrefslogtreecommitdiff
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-30458: Use InvalidURL instead of ValueError. (GH-13044)Gregory P. Smith2019-05-011-1/+1
* bpo-13611: C14N 2.0 implementation for ElementTree (GH-12966)Stefan Behnel2019-05-011-0/+2
* bpo-36676: Namespace prefix aware parsing support for the ET.XMLParser target...Stefan Behnel2019-05-011-0/+3
* bpo-36673: Implement comment/PI parsing support for the TreeBuilder in Elemen...Stefan Behnel2019-05-011-0/+3
* bpo-27682: Handle client connection terminations in wsgiref (GH-9713)Petter Strandmark2019-05-011-0/+2
* bpo-30458: Disallow control chars in http URLs. (GH-12755)Gregory P. Smith2019-04-301-0/+1
* bpo-36763: Fix Py_SetStandardStreamEncoding() (GH-13028)Victor Stinner2019-05-011-0/+2
* Don't report deleted attributes in __dir__ (GH#10148)Mario Corchero2019-04-301-0/+2
* bpo-36742: Fixes handling of pre-normalization characters in urlsplit() (GH-1...Steve Dower2019-04-301-0/+1
* bpo-36734: Fix compilation of faulthandler.c on HP-UX (GH-12970)Victor Stinner2019-04-301-0/+2
* bpo-25430: improve performance of IPNetwork.__contains__ (GH-1785)gescheit2019-04-301-0/+1
* bpo-36751: Deprecate getfullargspec and report positional-only args as regula...Pablo Galindo2019-04-301-0/+3
* bpo-36232: Improve error message on dbm.open() when the db doesn't exist (GH-...Marco Rougeth2019-04-292-1/+3
* bpo-34602: Avoid failures setting macOS stack resource limit (GH-13011)Ned Deily2019-04-291-0/+3
* bpo-1613500: Don't hardcode output file mode in fileinput.FileInput (GH-12986)Berker Peksag2019-04-291-0/+3
* bpo-36004: Add date.fromisocalendar (GH-11888)Paul Ganssle2019-04-291-0/+4
* bpo-35952: Fix test.pythoninfo when the compiler is missing (GH-13007)xdegaye2019-04-291-0/+1
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-0/+2
* bpo-36747: Remove the stale scriptsinstall Makefile target (GH-13003)xdegaye2019-04-291-0/+1
* bpo-36475: Finalize PyEval_AcquireLock() and PyEval_AcquireThread() properly ...Joannah Nanjekye2019-04-291-0/+4
* bpo-21536: On Android, C extensions are linked to libpython (GH-12989)xdegaye2019-04-293-3/+6
* bpo-32424: Improve test coverage for xml.etree.ElementTree (GH-12891)Gordon P. Hemsley2019-04-283-0/+4
* bpo-36025: Fix PyDate_FromTimestamp API (GH-11922)Paul Ganssle2019-04-271-0/+5
* bpo-36722: Style and grammar edits for ABI news entries (GH-12979)Paul Ganssle2019-04-273-10/+11
* bpo-36719: regrtest always detect uncollectable objects (GH-12951)Victor Stinner2019-04-261-0/+4
* bpo-36669: add matmul support to weakref.proxy (GH-12932)Mark Dickinson2019-04-261-0/+1
* bpo-36725: Refactor regrtest multiprocessing code (GH-12961)Victor Stinner2019-04-261-0/+3
* bpo-36722: Debug build loads libraries built in release mode (GH-12952)Victor Stinner2019-04-261-0/+2
* bpo-35920: Windows 10 ARM32 platform support (GH-11774)Paul Monson2019-04-251-0/+3
* bpo-21536: C extensions are no longer linked to libpython (GH-12946)Victor Stinner2019-04-253-4/+14
* bpo-28552: Fix distutils.sysconfig for empty sys.executable (GH-12875)Victor Stinner2019-04-251-0/+4
* bpo-36465: Fix test_regrtest on Windows (GH-12945)Victor Stinner2019-04-251-4/+9
* bpo-36465: Make release and debug ABI compatible (GH-12615)Victor Stinner2019-04-251-0/+5
* bpo-36668: FIX reuse semaphore tracker for child processes (#5172)Thomas Moreau2019-04-241-0/+1
* bpo-30840: Document relative imports (#12831)Joannah Nanjekye2019-04-251-0/+1
* bpo-36707: Remove the "m" flag (pymalloc) from SOABI (GH-12931)Victor Stinner2019-04-241-0/+3
* bpo-36454: Fix test_time.test_monotonic() (GH-12929)Victor Stinner2019-04-241-0/+3
* bpo-18372: Add missing PyObject_GC_Track() calls in the pickle module (GH-8505)Zackery Spytz2019-04-231-0/+2
* bpo-36546: Add statistics.quantiles() (#12710)Raymond Hettinger2019-04-231-0/+1
* bpo-36523: Add docstring to io.IOBase.writelines (GH-12683)Marcin Niemira2019-04-221-0/+1
* bpo-23078: Add support for {class,static}method to mock.create_autospec() (G...Xtreak2019-04-221-0/+2
* bpo-36650: Fix handling of empty keyword args in C version of lru_cache. (GH-...Raymond Hettinger2019-04-201-0/+4
* bpo-30485: Change the prefix for defining the default namespace in ElementPat...Stefan Behnel2019-04-181-1/+1
* bpo-36635: Add _testinternalcapi module (GH-12841)Victor Stinner2019-04-181-0/+1
* bpo-32913: Added re.Match.groupdict example to regex HOWTO (GH-5821)josh2019-04-171-0/+1
* bpo-36649: Remove trailing spaces for registry keys when installed via the St...Steve Dower2019-04-171-0/+1
* bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853)Victor Stinner2019-04-171-0/+5
* bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852)Victor Stinner2019-04-171-0/+2
* bpo-35755: Don't say "to mimick Unix which command behavior" (GH-12861)Victor Stinner2019-04-171-2/+1
* bpo-31904: Port test_resource to VxWorks (GH-12719)Lihua Zhao2019-04-171-0/+1