Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 1 | -1/+1 |
| | | | | Based on patch by Ville Skyttä. | ||||
* | Issue #27490: Do not build pgen when cross-compiling | Martin Panter | 2016-07-28 | 1 | -0/+3 |
| | | | | | | | | The dependendency on the $(PGEN) variable must only be set when not cross-compiling. When cross-compiling, $(PGEN) will not be used, so no need to build it. Patch by Thomas Perl. | ||||
* | Issue #26662: Set PYTHON_FOR_GEN in configure | Xavier de Gaye | 2016-07-26 | 1 | -0/+6 |
| | | | | as the Python program to be used for file generation during the build. | ||||
* | Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple() | Martin Panter | 2016-07-25 | 1 | -0/+3 |
| | | | | Patch by Xiang Zhang. | ||||
* | Issue #27469: Adds a shell extension to the launcher so that drag and drop ↵ | Steve Dower | 2016-07-16 | 1 | -1/+3 |
| | | | | works correctly. | ||||
* | Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module | Martin Panter | 2016-07-23 | 1 | -0/+5 |
| | | | | Patch by Xiang Zhang. | ||||
* | Issue #27507: Check for integer overflow in bytearray.extend() | Martin Panter | 2016-07-18 | 1 | -0/+3 |
| | | | | Patch by Xiang Zhang. | ||||
* | Issue #27309: Enables proper Windows styles in python[w].exe manifest. | Steve Dower | 2016-07-18 | 1 | -0/+5 |
| | |||||
* | Issue #27533: Release GIL in nt._isdir | Steve Dower | 2016-07-18 | 1 | -0/+2 |
| | |||||
* | Issue #27419: Standard __import__() no longer look up "__import__" in globals | Serhiy Storchaka | 2016-07-17 | 1 | -0/+4 |
| | | | | | or builtins for importing submodules or "from import". Fixed handling an error of non-string package name. | ||||
* | Issue #17711: Fixed unpickling by the persistent ID with protocol 0. | Serhiy Storchaka | 2016-07-17 | 1 | -0/+3 |
| | | | | Original patch by Alexandre Vassalotti. | ||||
* | #27522: break unintended cycle in feedparser. | R David Murray | 2016-07-16 | 1 | -0/+2 |
| | | | | Patch by Costas. | ||||
* | Issue #27083: Respect the PYTHONCASEOK environment variable under | Brett Cannon | 2016-07-15 | 1 | -0/+2 |
| | | | | | | | | | | Windows. Originally only b'PYTHONCASEOK' was being checked for in os.environ, but that won't work under Windows where all environment variables are strings (on OS X they are bytes). Thanks to Eryk Sun for the bug report. | ||||
* | Issue #26844: Fix imp.find_module() to have the exception related to | Brett Cannon | 2016-07-15 | 1 | -0/+3 |
| | | | | | | type issues be about 'path' instead of 'name'. Thanks to Lev Maximov for the patch. | ||||
* | make too many nested blocks be a SyntaxError instead of a SystemError ↵ | Benjamin Peterson | 2016-07-15 | 1 | -0/+3 |
| | | | | | | (closes #27514) Patch by Ammar Askar. | ||||
* | Issue #27369: Merge test_pyexpat from 3.4 into 3.5 | Martin Panter | 2016-07-14 | 1 | -0/+6 |
|\ | |||||
| * | Issue #27369: Merge test_pyexpat from 3.3 into 3.4 | Martin Panter | 2016-07-14 | 1 | -0/+6 |
| |\ | |||||
| | * | Issue #27369: Merge test_pyexpat from 3.2 into 3.3 | Martin Panter | 2016-07-14 | 1 | -0/+3 |
| | |\ | |||||
| | | * | Issue #27369: Don’t test error message detail that changed in Expat 2.2.03.2 | Martin Panter | 2016-07-14 | 1 | -0/+3 |
| | | | | |||||
| | | * | Issue #22758: Move NEWS entry to Library section | Martin Panter | 2016-07-14 | 1 | -3/+3 |
| | | | | |||||
| | | * | #22758: fix regression in handling of secure cookies. | R David Murray | 2016-07-10 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | This backports the fix from #16611, per discussion with the release manager. | ||||
| | * | | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. | Serhiy Storchaka | 2015-12-02 | 1 | -0/+5 |
| | | | | |||||
| * | | | Post-release fixups for Python 3.4.5. | Larry Hastings | 2016-06-27 | 1 | -0/+12 |
| | | | | |||||
| * | | | Version bump for 3.4.5 final.v3.4.5 | Larry Hastings | 2016-06-25 | 1 | -0/+11 |
| | | | | |||||
| * | | | Release bump for 3.4.5rc1.v3.4.5rc1 | Larry Hastings | 2016-06-12 | 1 | -3/+3 |
| | | | | |||||
* | | | | Issue #27392: Add loop.connect_accepted_socket(). | Yury Selivanov | 2016-07-12 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | Patch by Jim Fulton. | ||||
* | | | | English spelling and grammar fixes | Martin Panter | 2016-07-11 | 1 | -6/+6 |
| | | | | |||||
* | | | | Restore NEWS entries lost in revision 8145f25f26aa | Martin Panter | 2016-07-11 | 1 | -0/+6 |
| | | | | |||||
* | | | | Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF | Martin Panter | 2016-07-11 | 1 | -0/+3 |
| | | | | |||||
* | | | | Issue #27473: Fixed possible integer overflow in bytes and bytearray | Serhiy Storchaka | 2016-07-10 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | concatenations. Patch by Xiang Zhang. | ||||
* | | | | Issue #27466: Change time format returned by http.cookie.time2netscape, | Senthil Kumaran | 2016-07-10 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | confirming the netscape cookie format. | ||||
* | | | | Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | ||||
* | | | | Issue #27443: __length_hint__() of bytearray itearator no longer return | Serhiy Storchaka | 2016-07-03 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | negative integer for resized bytearray. | ||||
* | | | | Issue #27430: Fix typos, patch by scop. | Berker Peksag | 2016-07-01 | 1 | -1/+1 |
| | | | | |||||
* | | | | Issue #26665: Remove mis-use of ``$`` in activate.fish. | Brett Cannon | 2016-06-30 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a revertion of cfc66e37eb8e. Thanks to 鄭景文 for the bug report. Thanks to Tin Tvrtković, Xiang Zhang, and Dan McCombs for diagnosing the issue. | ||||
* | | | | Issue #27418: Fixed Tools/importbench/importbench.py. | Serhiy Storchaka | 2016-06-30 | 1 | -0/+5 |
| | | | | |||||
* | | | | Merge. | Larry Hastings | 2016-06-27 | 1 | -2/+61 |
|\ \ \ \ | |||||
| * | | | | Update NEWS and idlelib NEWS.text. | Terry Jan Reedy | 2016-06-26 | 1 | -0/+9 |
| | | | | | |||||
| * | | | | Issue #22115: Fixed tracing Tkinter variables: | Serhiy Storchaka | 2016-06-26 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tracing in the "u" mode now works * trace_vdelete() with wrong mode no longer break tracing * trace_vinfo() now always returns a list of pairs of strings | ||||
| * | | | | Fix a scoping issue where an UnboundLocalError was triggered if a | Brett Cannon | 2016-06-25 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | lazy-loaded module was already in sys.modules. | ||||
| * | | | | Issue #27294: Numerical state in the repr for Tkinter event objects is now | Serhiy Storchaka | 2016-06-18 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | represented as a compination of known flags. | ||||
| * | | | | Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as | Serhiy Storchaka | 2016-06-18 | 1 | -0/+11 |
| | | | | | | | | | | | | | | | | | | | | an iterable of integers. Now only strings and byte-like objects are accepted. | ||||
| * | | | | Issue #27048: Prevents distutils failing on Windows when environment ↵ | Steve Dower | 2016-06-17 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | variables contain non-ASCII characters | ||||
| * | | | | Issue #27330: Fixed possible leaks in the ctypes module. | Serhiy Storchaka | 2016-06-16 | 1 | -0/+2 |
| | | | | | |||||
| * | | | | Issue #26930: Update Windows build to OpenSSL 1.0.2h | Zachary Ware | 2016-06-15 | 1 | -0/+1 |
| | | | | | |||||
| * | | | | Issue #27238: Got rid of bare excepts in the turtle module. Original patch | Serhiy Storchaka | 2016-06-14 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | by Jelle Zijlstra. | ||||
| * | | | | issue27122: fix typo in the news file, wrong issue #. not issue27123. | Gregory P. Smith | 2016-06-14 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Issue #27123: When an exception is raised within the context being | Gregory P. Smith | 2016-06-14 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | managed by a contextlib.ExitStack() and one of the exit stack generators catches and raises it in a chain, do not re-raise the original exception when exiting, let the new chained one through. This avoids the PEP 479 bug described in issue25782. | ||||
| * | | | | Fix os.urandom() using getrandom() on Linux | Victor Stinner | 2016-06-14 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #27278: Fix os.urandom() implementation using getrandom() on Linux. Truncate size to INT_MAX and loop until we collected enough random bytes, instead of casting a directly Py_ssize_t to int. | ||||
| * | | | | Issue #25843: Fix the NEWS entry | Victor Stinner | 2016-06-14 | 1 | -1/+1 |
| | | | | |