summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384)Fish2019-02-071-0/+3
* bpo-35911: add cell constructor (GH-11771)Pierre Glaser2019-02-071-0/+3
* bpo-24209: In http.server script, rely on getaddrinfo to bind to preferred ad...Jason R. Coombs2019-02-071-0/+1
* bpo-35917: Test multiprocessing manager classes and shareable types (GH-11772)Giampaolo Rodola2019-02-071-0/+3
* bpo-35606: Implement math.prod (GH-11359)Pablo Galindo2019-02-071-0/+3
* bpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744)Steve Dower2019-02-051-0/+2
* bpo-35321: Set the spec origin to frozen in frozen modules (#11732)Nina Zakharenko2019-02-051-0/+1
* bpo-32417: Make timedelta arithmetic respect subclasses (#10902)Paul Ganssle2019-02-041-0/+6
* Merge tag 'v3.8.0a1'Łukasz Langa2019-02-04886-1857/+8977
|\
| * [blurb] v3.8.0a1Łukasz Langa2019-02-03886-1857/+8977
* | bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745)Steve Dower2019-02-042-0/+2
* | bpo-35692: pathlib no longer raises when checking file and directory existenc...Steve Dower2019-02-041-0/+2
|/
* bpo-35884: Add variable access benchmarking script (GH-11725)Raymond Hettinger2019-02-031-0/+2
* bpo-35890 : Fix some API calling consistency (GH-11742)Minmin Gong2019-02-031-0/+1
* bpo-34691: Compile _contextvars module into main Python library (GH-11741)Steve Dower2019-02-021-0/+2
* bpo-29734: nt._getfinalpathname handle leak (GH-740)Mark Becwar2019-02-021-0/+1
* bpo-32560: inherit the py launcher's STARTUPINFO (GH-9000)Shiva Saxena2019-02-021-0/+2
* bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730)Stefan Krah2019-02-021-0/+1
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-021-0/+1
* bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one charac...Tzu-ping Chung2019-02-021-0/+2
* bpo-33316: PyThread_release_lock always fails (GH-6541)native-api2019-02-021-0/+1
* bpo-35813: Added shared_memory submodule of multiprocessing. (#11664)Davin Potts2019-02-021-0/+2
* bpo-35877: Make parenthesis optional for named expression in while statement ...Xtreak2019-02-011-0/+2
* bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH...Joannah Nanjekye2019-02-011-0/+1
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-311-0/+1
* bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708)Raymond Hettinger2019-01-311-0/+2
* bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)Michael Selik2019-01-311-0/+2
* bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700)Steve Dower2019-01-301-0/+1
* subprocess: close pipes/fds by using ExitStack (GH-11686)Giampaolo Rodola2019-01-291-0/+4
* bpo-35847: RISC-V needs CTYPES_PASS_BY_REF_HACK (GH-11694)Andreas Schwab2019-01-291-0/+1
* bpo-35780: Fix errors in lru_cache() C code (GH-11623)Raymond Hettinger2019-01-261-0/+11
* bpo-35811: Avoid propagating venv settings when launching via py.exe (GH-11677)Steve Dower2019-01-251-0/+1
* bpo-35797: Fix default executable used by the multiprocessing module (GH-11676)Steve Dower2019-01-251-0/+1
* bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-1...Ivan Levkivskyi2019-01-251-0/+2
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-241-0/+1
* bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523)Rémi Lapeyre2019-01-242-0/+3
* bpo-35726: Prevented QueueHandler formatting from affecting other handlers (G...Manjusaka2019-01-231-0/+1
* bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)Victor Stinner2019-01-221-0/+2
* bpo-35683: Improve Azure Pipelines steps (GH-11493)Steve Dower2019-01-221-0/+1
* bpo-35713: Rework Python initialization (GH-11647)Victor Stinner2019-01-221-0/+3
* bpo-35720: Fixing a memory leak in pymain_parse_cmdline_impl() (GH-11528)Lucas Cimon2019-01-221-0/+1
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-221-0/+2
* bpo-35758: Fix building on ARM + MSVC (gh-11531)Minmin Gong2019-01-211-0/+1
* bpo-35772: Fix test_tarfile on ppc64 (GH-11606)Victor Stinner2019-01-211-0/+6
* bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057)Pablo Galindo2019-01-211-0/+2
* bpo-35699: fix distuils cannot detect Build Tools 2017 anymore (GH-11495)Marc Schlaich2019-01-201-0/+1
* bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547)Anthony Sottile2019-01-181-0/+2
* bpo-35770: IDLE macosx deletes Options => Configure IDLE. (GH-11614)Terry Jan Reedy2019-01-181-0/+3
* bpo-21257: document http.client.parse_headers (GH-11443)Ashwin Ramaswami2019-01-181-0/+1
* bpo-35045: Accept TLSv1 default in min max test (GH-11510)Christian Heimes2019-01-181-0/+2