summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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) ↵Victor Stinner2015-12-131-1/+1
| | | | | | | | directory
* | 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
| | | | | | | | | | | | | | | | This fixes a test failure in refleak mode because test_property_decorator_doc_writable no longer modifies the class in module level. Initial patch by Nan Wu and Torsten Landschoff (from issue 25757)
* | Merge 3.4Yury Selivanov2015-12-112-1/+22
|\ \ | |/
| * asyncio: Make Tasks check if Futures are attached to the same event loopYury Selivanov2015-12-112-1/+22
| | | | | | | | See https://github.com/python/asyncio/pull/303 for details
* | Merge 3.4Yury Selivanov2015-12-112-2/+5
|\ \ | |/
| * asyncio: Sync with githubYury Selivanov2015-12-112-2/+5
| |
* | Issue #25764: Skip fork failure test when run as rootMartin Panter2015-12-111-2/+6
| |
* | Issue #22341: Drop Python 2 workaround and document CRC initial valueMartin Panter2015-12-116-58/+39
| | | | | | | | Also align the parameter naming in binascii to be consistent with zlib.
* | Issue #14285: Do not catch exceptions initializing any ancestor packageMartin Panter2015-12-105-6/+31
| | | | | | | | | | | | | | | | The previous fix only handled the case of the parent package of __main__ failing to initialize. Also make the "Error while finding spec" formatting slightly more appealing, and document and test that the module name must be absolute.
* | Fixed possible leaks in ElementTree parser.Serhiy Storchaka2015-12-091-2/+8
| |
* | Fixed possible leak in ElementTree.Element.iter().Serhiy Storchaka2015-12-091-11/+11
| |
* | Clarify that only *documentation* bugs should go to docs@python.orgZachary Ware2015-12-091-1/+2
| |
* | Issue #25820: Remove unused assignment and redundant GDB CLI argumentsMartin Panter2015-12-081-3/+1
| | | | | | | | These were added in revision b71cda2f48c6.
* | Issue #21240: Add an abstractmethod directive to mark abstract methods in ↵Berker Peksag2015-12-084-11/+25
| | | | | | | | the docs more explicitly
* | Issue #25701: Document C API functions that both set and delete objectsMartin Panter2015-12-084-29/+50
| | | | | | | | | | | | Also document that the separate functions that delete objects are preferred; using PyObject_SetAttr(), _SetAttrString(), and PySequence_SetItem() to delete is deprecated.
* | merge 3.4doko@ubuntu.com2015-12-070-0/+0
|\ \ | |/
| * Remove x permissions from Lib/test/test_script_helper.pydoko@ubuntu.com2015-12-071-0/+0
| |
* | Mostly-null merge from 3.4. (Only added the tag for 3.4.4rc1.)Larry Hastings2015-12-071-0/+1
|\ \ | |/
| * Merge.Larry Hastings2015-12-074-21/+35
| |\
| | * Post-release fixups for Python 3.4.4rc1.Larry Hastings2015-12-072-1/+13
| | |
| | * Added tag v3.4.4rc1 for changeset 04f3f725896cLarry Hastings2015-12-061-0/+1
| | |
| | * Version bump for 3.4.4rc1.v3.4.4rc1Larry Hastings2015-12-062-6/+7
| | |
| | * Rebuilt pydoc topics for 3.4.4rc1.Larry Hastings2015-12-061-15/+15
| | |
* | | Merge.Larry Hastings2015-12-074-7/+9
|\ \ \
| * | | Post-release fixups for Python 3.5.1.Larry Hastings2015-12-072-1/+13
| | | |
| * | | Added tag v3.5.1 for changeset 37a07cee5969Larry Hastings2015-12-061-0/+1
| | | |
| * | | Version bump for 3.5.1 final.v3.5.1Larry Hastings2015-12-062-4/+5
| | | |
| * | | Updated pydoc topics for 3.5.1 final.Larry Hastings2015-12-061-1/+1
| | | |
| * | | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-023-1/+28
| | | |
| * | | Merge.Larry Hastings2015-12-062-2/+2
| |\ \ \
| | * | | Fixes upload directories for Windows installer.Steve Dower2015-11-232-2/+2
| | | | |
* | | | | Issue25814: Propagate all errors from custom XML parser handlersSerhiy Storchaka2015-12-061-88/+39
|\ \ \ \ \ | | |_|/ / | |/| | | | | | | | in ElementTree.iterparse().
| * | | | Issue25814: Propagate all errors from custom XML parser handlersSerhiy Storchaka2015-12-061-88/+39
| | |_|/ | |/| | | | | | | | | | in ElementTree.iterparse().
* | | | Issue #25717: Add comment explaining why errors are ignoredMartin Panter2015-12-061-0/+3
| | | |
* | | | Issue #25798: merge from 3.4Ned Deily2015-12-063-11/+18
|\ \ \ \ | |/ / /
| * | | Issue #25798: Update OS X 10.5+ 32-bit-only installer to buildNed Deily2015-12-063-13/+15
| | | | | | | | | | | | | | | | and link with OpenSSL 1.0.2e.
* | | | Issue #25717: Tolerate fstat() failures in the FileIO constructorMartin Panter2015-12-062-12/+31
| | | | | | | | | | | | | | | | | | | | | | | | This restores 3.4 behaviour, which was removed by revision 3b5279b5bfd1. The fstat() call fails with ENOENT for a Virtual Box shared folder filesystem if the file entry has been unlinked, e.g. for a temporary file.
* | | | Issue #25764: Merge OS X test skipping from 3.4 into 3.5Martin Panter2015-12-051-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #25764: Skip the test on OS XMartin Panter2015-12-051-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The OS X buildbots were failing at the second setrlimit() call with EPERM, as if they were trying to raise the hard limit. The call should be keeping the hard limit the same and raising the soft limit back to its original value, so I don't understand the failure.
* | | | merge 3.4Benjamin Peterson2015-12-050-0/+0
|\ \ \ \ | |/ / /