summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412)Rémi Lapeyre2020-01-284-29/+39
* bpo-39439: Fix multiprocessing spawn path in a venv on Windows (GH-18158)Adam Meily2020-01-282-1/+2
* bpo-39287: Doc: Add UTF-8 mode section in using/windows. (GH-17935)Inada Naoki2020-01-282-2/+44
* bpo-39393: Misleading error message on dependent DLL resolution failure (GH-1...Zackery Spytz2020-01-282-2/+5
* bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windo...Christoph Reiter2020-01-283-11/+20
* bpo-38644: Pass tstate in ceval.c (GH-18222)Victor Stinner2020-01-281-6/+6
* bpo-36018: Minor fixes to the NormalDist() examples and recipes. (GH-18226)Raymond Hettinger2020-01-281-5/+5
* bpo-39205: Tests that highlight a hang on ProcessPoolExecutor shutdown (#18221)Brian Quinlan2020-01-281-0/+20
* bpo-39392: Turtle overlap fill depends on OS (#18223)Terry Jan Reedy2020-01-272-0/+6
* bpo-38631: Avoid Py_FatalError() in PyCode_New() (GH-18215)Victor Stinner2020-01-271-26/+46
* bpo-38631: Avoid Py_FatalError() in _PyCodecRegistry_Init() (GH-18217)Victor Stinner2020-01-271-16/+21
* bpo-30780: Add IDLE configdialog tests (#3592)Cheryl Sabella2020-01-274-31/+149
* Add test.test_import.data.unwritable package to makefile (#18211)Dino Viehland2020-01-271-0/+1
* bpo-38631: Avoid Py_FatalError() in _memory_release() (GH-18214)Victor Stinner2020-01-271-1/+2
* bpo-38631: Avoid Py_FatalError() in PyModule_Create2() (GH-18212)Victor Stinner2020-01-271-2/+5
* bpo-39459: test.pythoninfo logs effective uid/gid (GH-18203)Victor Stinner2020-01-271-9/+14
* bpo-39453: Add testcase for bpo-39453 (GH-18202)Dong-hee Na2020-01-272-1/+3
* Ignore NEWS snippets in code coverage stats (GH-18194)Nick Coghlan2020-01-271-1/+1
* bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH...Dong-hee Na2020-01-273-1/+13
* Clarify and fix assertions that mocks have not been awaited (GH-18196)Chris Withers2020-01-272-27/+30
* Use relative imports in mock and its tests to help backporting (GH-18197)Chris Withers2020-01-273-79/+82
* Fix so that test.test_distutils can be executed by unittest and not just regr...Toshio Kuratomi2020-01-271-0/+6
* bpo-39320: Handle unpacking of **values in compiler (GH-18141)Mark Shannon2020-01-2710-3662/+3670
* bpo-25597: Ensure wraps' return value is used for magic methods in MagicMock ...Karthikeyan Singaravelan2020-01-273-0/+56
* bpo-36018: Add another example for NormalDist() (#18191)Raymond Hettinger2020-01-261-0/+36
* Fix linecache.py add lazycache to __all__ and use dict.clear to clear the cac...加和2020-01-262-18/+21
* bpo-39374: Updated sorting documentation (GH-18177)Juhana Jauhiainen2020-01-251-4/+6
* bpo-36654: Add examples for using tokenize module programmically (#12947)Windson yang2020-01-251-0/+19
* bpo-15243: Document __prepare__ as classmethod (GH-17124)alclarks2020-01-251-1/+2
* bpo-38932: Mock fully resets child objects on reset_mock(). (GH-17409)Vegard Stikbakke2020-01-253-2/+15
* Update 3.8.rst (GH-18173)fireattack2020-01-251-1/+1
* Post 3.9.0a3Łukasz Langa2020-01-251-1/+1
* Merge tag 'v3.9.0a3'Łukasz Langa2020-01-2589-275/+1024
|\
| * Python 3.9.0a3v3.9.0a3Łukasz Langa2020-01-2489-275/+1024
* | bpo-37955: correct mock.patch docs with respect to the returned type (GH-15521)Paulo Henrique Silva2020-01-252-2/+4
* | bpo-39082: Allow AsyncMock to correctly patch static/class methods (GH-18116)Matthew Kokotovich2020-01-253-0/+26
* | bpo-39388: IDLE: Fix bug when cancelling out of configdialog (GH-18068)Cheryl Sabella2020-01-254-8/+19
|/
* bpo-39430: Fix race condition in lazy imports in tarfile. (GH-18161)Serhiy Storchaka2020-01-242-10/+9
* bpo-38631: Avoid Py_FatalError() in GC collect() (GH-18164)Victor Stinner2020-01-241-7/+1
* bpo-39390 shutil: fix argument types for ignore callback (GH-18122)mbarkhau2020-01-243-1/+45
* bpo-38473: Handle autospecced functions and methods used with attach_mock (GH...Karthikeyan Singaravelan2020-01-243-0/+35
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-2412-154/+52
* bpo-39413: Implement os.unsetenv() on Windows (GH-18163)Victor Stinner2020-01-246-49/+150
* bpo-39361: Document the removal of PyTypeObject.tp_print (GH-18125)Ammar Askar2020-01-241-0/+5
* bpo-39426: Fix outdated default and highest protocols in docs (GH-18154)Mark Dickinson2020-01-243-19/+21
* bpo-39429: Add a new "Python Development Mode" doc page (GH-18132)Victor Stinner2020-01-2413-49/+268
* Fix `mock.patch.dict` to be stopped with `mock.patch.stopall` (#17606)Mario Corchero2020-01-243-2/+69
* bpo-24928: Add test case for patch.dict using OrderedDict (GH -11437)Emmanuel Arias2020-01-241-0/+20
* bpo-17005: Minor improvements to the documentation of TopologicalSorter (GH-1...Pablo Galindo2020-01-231-75/+67
* bpo-39431: Also mention nonlocal in assignment quirk (GH-17375)Shanavas M2020-01-231-4/+4