summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* merge 3.4Benjamin Peterson2016-01-016-8/+8
|\
| * merge 3.3Benjamin Peterson2016-01-016-8/+8
| |\
| | * 2016 will be another year of writing copyrighted codeBenjamin Peterson2016-01-016-6/+6
| | |
* | | Issue #25961: Disallowed null characters in the type name.Serhiy Storchaka2015-12-302-28/+19
| | | | | | | | | | | | Simplified testing for null characters in __name__ setter.
* | | Make catched exception more specific and correct a comment.Serhiy Storchaka2015-12-301-3/+3
| | |
* | | Fixed formatting comman-line usage message.Serhiy Storchaka2015-12-301-4/+4
| | |
* | | Issue #25977: Fix typos in Lib/tokenize.pyBerker Peksag2015-12-291-4/+4
| | | | | | | | | | | | Patch by John Walker.
* | | make recording and reporting errors and nonlocal and global directives more ↵Benjamin Peterson2015-12-293-8/+27
| | | | | | | | | | | | robust (closes #25973)
* | | Backport of fix for issue #25930Brett Cannon2015-12-291-5/+5
| | |
* | | Issue #25447: Copying the lru_cache() wrapper object now always works,Serhiy Storchaka2015-12-283-2/+32
| | | | | | | | | | | | | | | independedly from the type of the wrapped object (by returning the original object unchanged).
* | | Issue #12484: Remove a mention of Py_InitModule() and ↵Brett Cannon2015-12-273-19/+1
| | | | | | | | | | | | | | | | | | | | | _PyImport_FixupExtension(). Thanks to Alejandro Santos for the bug report and Anish Shah for the patch.
* | | Issue #25874: Clarify platform support in the "Using Python on Windows" doc.Brett Cannon2015-12-272-0/+9
| | | | | | | | | | | | Thanks to Chris Wilcox for the initial patch.
* | | Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-277-58/+39
| | | | | | | | | | | | | | | This patch is manually crafted and contains changes that couldn't be handled automatically.
* | | Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-2711-106/+63
| | | | | | | | | | | | The patch is automatically generated, it replaces the code that uses Py_CLEAR.
* | | Fixes #25360: Search for pythonw.exe when in pyw.exe.Vinay Sajip2015-12-261-1/+1
| | |
* | | Closes #25685: Made SocketHandler emission more efficient.Vinay Sajip2015-12-261-0/+2
| | |
* | | Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-254-15/+67
| | | | | | | | | | | | | | | | | | subclasses of list or dict and haven't implemented any pickle-related methods (__reduce__, __reduce_ex__, __getnewargs__, __getnewargs_ex__, or __getstate__), can no longer be pickled. Including memoryview.
* | | Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser.Serhiy Storchaka2015-12-242-19/+15
| | |
* | | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-2428-120/+92
| | | | | | | | | | | | macro Py_SETREF.
* | | #1753718: clarify RFC compliance and bytes/string argument types.R David Murray2015-12-241-57/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch includes contributions by Isobel Hooper, incorporating suggestions from Paul Winkler. Reviewed by Martin Panter. In addition to accepting the corrections for the RFC compliance wording, I went through and corrected all the argument and return types, and made the pattern of how the arguments and return types are documented consistent. So, this patch also addresses #20782, though I had forgotten about that issue and its patch.
* | | Issue #25860: Fixed test failure caused by inconsistency of os.walk() andSerhiy Storchaka2015-12-221-0/+2
| | | | | | | | | | | | os.fwalk() parameter names.
* | | Issue #25860: os.fwalk() no longer skips remaining directories when error ↵Serhiy Storchaka2015-12-223-12/+24
| | | | | | | | | | | | | | | | | | occurs. Original patch by Samson Lee.
* | | Issue #25914: Fixed and simplified OrderedDict.__sizeof__.Serhiy Storchaka2015-12-225-25/+45
| | |
* | | Issue #25827: Add support for ICC to configureZachary Ware2015-12-216-0/+196
| | |
* | | Issue #25902: Fixed various refcount issues in ElementTree iteration.Serhiy Storchaka2015-12-214-36/+117
| | |
* | | Merge 3.4.4 from 3.4 to 3.5.Larry Hastings2015-12-211-0/+1
|\ \ \ | |/ /
| * | Merge.Larry Hastings2015-12-215-7/+19
| |\ \
| | * | Post-release touchups for Python 3.4.4 final.Larry Hastings2015-12-212-1/+13
| | | |
| | * | Added tag v3.4.4 for changeset 737efcadf5a6Larry Hastings2015-12-201-0/+1
| | | |
| | * | Release bump for Python 3.4.4 final.v3.4.4Larry Hastings2015-12-203-8/+7
| | | |
| | * | Rebuild pydoc topics for Python 3.4.4 final.Larry Hastings2015-12-201-1/+1
| | | |
| | * | Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.Vinay Sajip2015-12-131-2/+2
| | | |
* | | | Issue #25766: Special method __bytes__() now works in str subclasses.Serhiy Storchaka2015-12-203-6/+20
| | | |
* | | | Fixed sizeof tests for dict and type (they were passed by accident).Serhiy Storchaka2015-12-201-11/+22
| | | | | | | | | | | | | | | | Added tests for dict views iterators.
* | | | Don't create non-needed file.Serhiy Storchaka2015-12-201-5/+0
| | | |
* | | | Use correct PyGC_Head size in tests for issue #25421.Serhiy Storchaka2015-12-191-1/+1
| | | |
* | | | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-1919-22/+54
| | | | | | | | | | | | | | | | | | | | This allows sys.getsize() to work correctly with their subclasses with __slots__ defined.
* | | | Merge with 3.4Terry Jan Reedy2015-12-181-1/+1
|\ \ \ \ | |/ / /
| * | | Issue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION ↵Terry Jan Reedy2015-12-181-1/+1
| | | | | | | | | | | | | | | | MARK.
* | | | 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
| | | | | | | | | | | | | | | | to ASCII replacements. Original patch by Chris Angelico.
* | | | 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
| | | | | | | | | | | | | | | | Added test for return code for the last RegQueryValueExW.
* | | | docs: Document ASYNC/AWAIT tokens (issue #25580)Yury Selivanov2015-12-171-0/+6
| | | | | | | | | | | | | | | | Initial patch by SilentGhost
* | | | 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
| | | |