summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-1919-22/+54
* | | | Merge with 3.4Terry Jan Reedy2015-12-181-1/+1
|\ \ \ \ | |/ / /
| * | | Issue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION M...Terry Jan Reedy2015-12-181-1/+1
* | | | Fixed markup and spaces in Misc/NEWS.Serhiy Storchaka2015-12-181-2/+2
* | | | Issue #25899: Fixed typo in .bzrignore.Serhiy Storchaka2015-12-181-1/+1
* | | | Issue #25899: Converted non-ASCII characters in docstrings and manpageSerhiy Storchaka2015-12-183-4/+4
* | | | Test UTF-32LE before UTF-16LE since UTF-16LE BOM is a prefix of UTF-32LE BOM.Serhiy Storchaka2015-12-181-2/+4
* | | | Issue #25893: Removed unused variable reqdSize.Serhiy Storchaka2015-12-181-1/+4
* | | | docs: Document ASYNC/AWAIT tokens (issue #25580)Yury Selivanov2015-12-171-0/+6
* | | | Merge 3.4 into 3.5Martin Panter2015-12-170-0/+0
|\ \ \ \ | |/ / /
| * | | Issue #25809: Skip testing platform-dependent French thousands separatorMartin Panter2015-12-121-1/+3
* | | | Fix a couple of typos in code commentsMartin Panter2015-12-173-4/+4
* | | | Merge 3.4Yury Selivanov2015-12-172-6/+6
|\ \ \ \ | |/ / /
| * | | docs/asyncio: Twek sections names per Nick Coghlan suggestionYury Selivanov2015-12-172-6/+6
* | | | Merge 3.4Yury Selivanov2015-12-171-0/+4
|\ \ \ \ | |/ / /
| * | | asyncio/tests: Fix a ResourceWarning due to unclosed loopYury Selivanov2015-12-171-0/+4
* | | | Merge 3.4Yury Selivanov2015-12-171-18/+29
|\ \ \ \ | |/ / /
| * | | asyncio/tests: Fix ResourceWarnings related to unclosed transportsYury Selivanov2015-12-171-18/+29
* | | | Merge 3.4Yury Selivanov2015-12-172-13/+18
|\ \ \ \ | |/ / /
| * | | asyncio/tests: Fix some ResourceWarningsYury Selivanov2015-12-172-13/+18
* | | | Merge 3.4Yury Selivanov2015-12-171-1/+1
|\ \ \ \ | |/ / /
| * | | asyncio/tests: Fix deprecation warningYury Selivanov2015-12-171-1/+1
* | | | Merge 3.4Yury Selivanov2015-12-171-1/+1
|\ \ \ \ | |/ / /
| * | | Normalize whitespaceYury Selivanov2015-12-171-1/+1
* | | | Merge 3.4Yury Selivanov2015-12-177-68/+284
|\ \ \ \ | |/ / /
| * | | asyncio: Skip getaddrinfo if host is already resolved.Yury Selivanov2015-12-177-68/+284
* | | | Issue #23788: Merge redundant test_bad_address() into test_urllibnetMartin Panter2015-12-162-35/+20
* | | | docs/asyncio: Update ensure_future & run_coroutine_threadsafe docsYury Selivanov2015-12-151-1/+4
* | | | docs/whatsnew/3.5: Fix ref linkYury Selivanov2015-12-151-1/+1
* | | | whatsnew/3.5: Mention new asyncio APIs in 3.5.1Yury Selivanov2015-12-151-0/+12
* | | | Issue #11072: change the incorrect "deprecation" of ftplib dir() and nlst()Gregory P. Smith2015-12-141-3/+3
* | | | * Re-fix issue #19284: Don't generate the no-op -R command lineGregory P. Smith2015-12-143-7/+16
|\ \ \ \ | |/ / /
| * | | merge headGregory P. Smith2015-12-141-3/+6
| |\ \ \
| * | | | Re-fix issue #19284: Don't generate the no-op -R command lineGregory P. Smith2015-12-141-3/+0
| * | | | Fix test_cmd_line not to fail if PYTHONHASHSEED is set to a fixed seedGregory P. Smith2015-12-141-3/+15
| * | | | assert_python_ok docstring typo fix.Gregory P. Smith2015-12-141-1/+1
* | | | | Issue #25846: Fix usage of Py_ARRAY_LENGTH() in win32_wchdir() (new try)Victor Stinner2015-12-131-1/+1
* | | | | Merge: #25495: Clarify b2a_base64 documentation vis 57 bytes.R David Murray2015-12-131-3/+6
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | #25495: Clarify b2a_base64 documentation vis 57 bytes.R David Murray2015-12-131-3/+6
| |/ / /
* | | | Issue #25846: Fix usage of Py_ARRAY_LENGTH() in win32_wchdir()Victor Stinner2015-12-131-3/+3
* | | | Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) d...Victor Stinner2015-12-131-1/+1
* | | | Issue #25696: Fix installation of Python on UNIX with make -j9.Victor Stinner2015-12-132-0/+6
* | | | Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.Vinay Sajip2015-12-131-1/+1
|\ \ \ \ | |/ / /
| * | | Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.Vinay Sajip2015-12-131-2/+2
* | | | Sync asyncio with upstream git repo (conditional import in test_pep492.py).Guido van Rossum2015-12-131-1/+4
* | | | Issue #19771: Omit irrelevant message if package could not be initializedMartin Panter2015-12-123-0/+19
* | | | Issue #25845: Drop redundant checks leftover from int to long conversionMartin Panter2015-12-121-2/+2
* | | | Issue #25809: Skip testing platform-dependent French thousands separatorMartin Panter2015-12-121-1/+3
* | | | Issue #25755: Move PropertyWritableDoc into the test caseBerker Peksag2015-12-111-7/+7
* | | | Merge 3.4Yury Selivanov2015-12-112-1/+22
|\ \ \ \ | |/ / /