summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* [3.6] bpo-30184: Add tests for invalid use of PyArg_ParseTupleAndKeywords. (G...Serhiy Storchaka2017-05-042-20/+43
* [3.6] bpo-28315: Improve code examples in docs (GH-1372) (#1445)Mariatta2017-05-0412-30/+30
* Bump version in AppVeyor config (GH-1436)Zachary Ware2017-05-031-1/+1
* [3.6] bpo-28556: Routine updates to typing (GH-1366) (#1416)Mariatta2017-05-033-9/+81
* [3.6] Fix typo in selectors.rst (GH-1383) (#1414)Mariatta2017-05-031-1/+1
* regrtest: always show before/after of modified env (#1192) (#1406)Victor Stinner2017-05-031-3/+2
* Backport bpo-30205 to 3.6 (#1403)Antoine Pitrou2017-05-023-3/+9
* [3.6] bpo-30232: Support Git worktree in configure.ac (#1398)Victor Stinner2017-05-022-2/+2
* bpo-30199: test_ssl closes all asyncore channels (#1381) (#1390)Victor Stinner2017-05-021-1/+3
* bpo-30132: distutils BuildExtTestCase use temp_cwd (#1387)Victor Stinner2017-05-021-0/+7
* bpo-30108: Restore sys.path in test_site (#1197) (#1378)Victor Stinner2017-05-021-8/+21
* bpo-30104: Use -fno-strict-aliasing on clang (#1376)Victor Stinner2017-05-023-14/+64
* [3.6] Clean up some confusing text left by PROTOCOL_SSLv23 -> PROTOCOL_TLS tr...Mariatta2017-05-021-3/+3
* [3.6] Improve the grammar in windows.rst (GH-1330) (GH-1360)Mariatta2017-04-301-3/+3
* [3.6] bpo-30208: DOC: fix small typos in IDLE (#1356)csabella2017-04-301-8/+8
* [3.6] bpo-30197: Enhance functions swap_attr() and swap_item() in test.suppor...Serhiy Storchaka2017-04-284-13/+46
* bpo-30125: disable faulthandler in ctypes test_SEH (#1237) (#1343)Victor Stinner2017-04-282-4/+24
* bpo-30131: test_logging now joins queue threads (#1298) (#1317)Victor Stinner2017-04-281-0/+8
* [3.6] bpo-30106: Fix test_asyncore.test_quick_connect() (#1336)Victor Stinner2017-04-281-40/+40
* bpo-30107: Make SuppressCrashReport quiet on macOS (#1279) (#1335)Victor Stinner2017-04-281-4/+9
* bpo-30175: Skip client cert tests of test_imaplib (#1320) (#1323)Victor Stinner2017-04-272-1/+12
* [3.6] bpo-30182: Use the correct name for ISO in Unicode HOWTO. (GH-1312) (GH...Mariatta2017-04-271-3/+3
* [3.6] bpo-30142: Remove "callable" from the 2to3fixer documentation. (GH-1303)Dong-hee Na2017-04-261-7/+0
* bpo-29974: Improve typing.TYPE_CHECKING example (GH-982)Berker Peksag2017-04-261-2/+7
* bpo-28698: Fix c_wchar_p doc example (GH-1160)Louie Lu2017-04-261-5/+9
* [3.6] bpo-28851: Improve namedtuple documentation (GH-1274) (GH-1286)Mariatta2017-04-261-3/+3
* [3.6] bpo-29751: Improve PyLong_FromString documentation (GH-915) (#1266)Mariatta2017-04-241-7/+6
* [3.6] bpo-15718: Document the upper bound constrain on the __len__ return val...Serhiy Storchaka2017-04-231-0/+9
* [3.6] Fix trailing colon and newline in test.rst (GH-1250) (#1254)Louie Lu2017-04-221-1/+2
* bpo-30098: Clarify that run_coroutine_threadsafe expects asyncio.Future (GH...Mariatta2017-04-221-1/+2
* [3.6] Correct the README link in Unix install docs (GH-1245) (GH-1248)Mariatta2017-04-221-1/+1
* bpo-30125: Fix faulthandler.disable() on Windows (#1243)Victor Stinner2017-04-212-2/+23
* bpo-29191: Add liblzma.vcxproj to pcbuild.sln and other missing entries (GH-1...Steve Dower2017-04-211-0/+34
* bpo-30107: don't dump core on expected test_io crash (#1235) (#1241)Victor Stinner2017-04-211-0/+5
* [3.6] Add missing .gitignore entries for VS2015 IntelliSense DB (GH-1223) (#1...Mariatta2017-04-211-0/+2
* bpo-29802: Fix the cleaning up issue in PyUnicode_FSDecoder(). (#1217)Serhiy Storchaka2017-04-201-0/+1
* [3.6] bpo-30109: Fix reindent.py (GH-1207) (GH-1208)Mariatta2017-04-202-1/+12
* [3.6] bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1...Dong-hee Na2017-04-204-6/+17
* Remove redundant comma in argparse HOWTO (GH-1141)Berker Peksag2017-04-201-1/+1
* bpo-30078: Add an example of passing a path to unittest (GH-1178)Berker Peksag2017-04-201-0/+1
* bpo-19225: Remove duplicated description for standard warning categories (GH-...cocoatomo2017-04-201-12/+9
* [3.6] bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). ...Serhiy Storchaka2017-04-195-26/+41
* [3.6] bpo-30070: Fixed leaks and crashes in errors handling in the parser mod...Serhiy Storchaka2017-04-193-52/+162
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096...Serhiy Storchaka2017-04-197-31/+95
* bpo-30017: Allowed calling the close() method of the zip entry writer object ...Serhiy Storchaka2017-04-163-0/+49
* bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is prese...Xiang Zhang2017-04-153-11/+23
* [3.6] bpo-30059: Include Py_Ellipsis in C API documentation (GH-1018) (GH-1149)Michael Seifert2017-04-151-0/+11
* [3.6] bpo-29738: Fix memory leak in _get_crl_dp (GH-526) (GH-1142)Mariatta2017-04-151-7/+1
* improve alignment autoconf test (#1129) (#1139)Benjamin Peterson2017-04-143-22/+36
* Fix misplaced positional argument in OS X support library (#1137)Jack McCracken2017-04-141-1/+1