Martijn Pieters
680f04a926
bpo-31161: only check for parens error for SyntaxError ( #3083 )
...
Subclasses such as IndentError and TabError should not have this message
applied.
2017-08-22 13:11:09 -07:00
Nick Coghlan
1a05e87ec7
[3.6] bpo-31232: Backport custom print rshift message (GH-3155)
...
bpo-30721 added a "Did you mean ...?" suggestion to rshift
TypeError messages that triggers when the LHS is a Python
C function called "print".
Since this custom error message is expected to be triggered
primarily by attempts to use Python 2 print redirection syntax
in Python 3, and is incredibly unlikely to be encountered
otherwise, it is also being backported to the next 3.6
maintenance release.
Initial patch by Sanyam Khurana.
2017-08-19 16:59:38 +10:00
Serhiy Storchaka
f08b2be441
[3.6] bpo-30978: str.format_map() now passes key lookup exceptions through. (GH-2790) ( #2992 )
...
Previously any exception was replaced with a KeyError exception.
(cherry picked from commit 5075416
)
2017-08-03 12:14:07 +03:00
Serhiy Storchaka
82a9075600
[3.6] bpo-22207: Add checks for possible integer overflows in unicodeobject.c. (GH-2623) ( #2658 )
...
Based on patch by Victor Stinner.
(cherry picked from commit 64e461b
)
2017-07-11 07:27:56 +03:00
Nick Coghlan
bfdc6fdc0e
[3.6] bpo-30597: Show expected input in custom 'print' error message. (GH-2531)
...
(cherry picked from commit 3a7f03584a
)
2017-07-03 17:49:50 +10:00
Serhiy Storchaka
0834905d9b
[3.6] bpo-13617: Reject embedded null characters in wchar* strings. (GH-2302) ( #2462 )
...
Based on patch by Victor Stinner.
Add private C API function _PyUnicode_AsUnicode() which is similar to
PyUnicode_AsUnicode(), but checks for null characters..
(cherry picked from commit f7eae0adfc
)
2017-06-28 09:27:35 +03:00
Victor Stinner
26daad4ee1
bpo-30704, bpo-30604: Fix memleak in code_dealloc() ( #2455 ) ( #2456 )
...
Free also co_extra->ce_extras, not only co_extra.
(cherry picked from commit 23e7944eba
)
2017-06-28 02:28:51 +02:00
Serhiy Storchaka
0edffa3073
[3.6] bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (GH-2285) ( #2443 )
...
Raise a ValueError if the second argument is NULL and the wchar_t\*
string contains null characters..
(cherry picked from commit e613e6add5
)
2017-06-27 21:08:58 +03:00
Serhiy Storchaka
e7135751b8
[3.6] bpo-30730: Prevent environment variables injection in subprocess on Windows. (GH-2325) ( #2360 )
...
Prevent passing other invalid environment variables and command arguments..
(cherry picked from commit d174d24a5d
)
2017-06-23 20:17:38 +03:00
Dino Viehland
2997fec01e
[3.6] bpo-30604: Move co_extra_freefuncs to interpreter state to avoid crashes in threads ( #2015 )
...
* Move co_extra_freefuncs to interpreter state to avoid crashes in
multi-threaded scenarios involving deletion of code objects
* Don't require that extra be zero initialized
* Build test list instead of defining empty test class
* Ensure extra is always assigned on success
* Keep the old fields in the thread state object, just don't use them
Add new linked list of code extra objects on a per-interpreter basis
so that interpreter state size isn't changed
* Rename __PyCodeExtraState_Get and add comment about it going away in 3.7
Fix sort order of import's in test_code.py
* Remove an extraneous space
* Remove docstrings for comments
* Touch up formatting
* Fix casing of coextra local
* Fix casing of another variable
* Prefix PyCodeExtraState with __ to match C API for getting it
* Update NEWS file for bpo-30604
2017-06-12 21:46:35 -04:00
Victor Stinner
f0ff849adc
bpo-30524: Fix _PyStack_UnpackDict() ( #1886 )
...
* bpo-29259: Remove unused func parameter of _PyStack_UnpackDict()
* bpo-29286: Change _PyStack_UnpackDict() prototype to be able to
notify of failure when args is NULL. _PyStack_UnpackDict() now
returns -1 on error.
2017-06-09 13:24:53 +02:00
Serhiy Storchaka
564398af6c
[3.6] bpo-27945: Fixed various segfaults with dict. (GH-1657) ( #1677 )
...
Based on patches by Duane Griffin and Tim Mitchell.
(cherry picked from commit 753bca3934
)
2017-05-20 13:06:26 +03:00
Serhiy Storchaka
193f7e094f
[3.6] bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (GH-1652) ( #1673 )
...
Based on patch by Eryk Sun.
(cherry picked from commit d896985bb2
)
2017-05-20 10:23:31 +03:00
Xiang Zhang
98b49a00d4
bpo-30281: Fix the default value for stop in PySlice_Unpack() ( #1480 ) ( #1529 )
2017-05-10 19:00:15 +08:00
Serhiy Storchaka
7a113a0cbf
bpo-29802: Fix the cleaning up issue in PyUnicode_FSDecoder(). ( #1217 )
2017-04-20 22:55:06 +03:00
Dong-hee Na
df5df13fdc
[3.6] bpo-12414: Update code_sizeof() to take in account co_extra memory. ( #1168 ) ( #1198 )
2017-04-20 11:26:25 +03:00
Serhiy Storchaka
680fea4067
bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() ( #1096 ) ( #1180 )
...
raised an error.
(cherry picked from commit bf623ae884
)
2017-04-19 21:22:49 +03:00
Mariatta
577fc04a71
[3.6] bpo-29549: Fixes docstring for str.index (GH-256) (GH-1028)
...
(cherry picked from commit 43ba8861e0
)
2017-04-09 15:17:06 -07:00
Serhiy Storchaka
af685f9050
bpo-29998: Pickling and copying ImportError now preserves name and path ( #1010 ) ( #1042 )
...
attributes.
(cherry picked from commit b785396ab4
)
2017-04-08 11:25:47 +03:00
Serhiy Storchaka
c26b19d5c7
Expand the PySlice_GetIndicesEx macro. ( #1023 ) ( #1044 )
...
(cherry picked from commit b879fe82e7
)
2017-04-08 11:18:14 +03:00
T. Wouters
90e3518225
bpo-29941: Assert fixes ( #886 ) ( #955 )
...
Make a non-Py_DEBUG, asserts-enabled build of CPython possible. This means
making sure helper functions are defined when NDEBUG is not defined, not
just when Py_DEBUG is defined.
Also fix a division-by-zero in obmalloc.c that went unnoticed because in
Py_DEBUG mode, elsize is never zero.
(cherry picked from commit a00c3fd12d
and 06bb4873d6
)
2017-04-01 20:20:05 -07:00
INADA Naoki
efde51ad54
bpo-29949: Fix set memory usage regression (GH-945)
...
Revert "Minor factoring: move redundant resize scaling logic into the resize function."
This reverts commit 4897300276
.
(cherry picked from commit e82cf8675b
)
2017-04-01 23:29:31 +09:00
Mariatta
0a17e58446
bpo-28810: Update lnotab_notes.txt (GH-665) (GH-919)
...
(cherry picked from commit 9135275cba
)
2017-03-31 02:12:18 -07:00
Serhiy Storchaka
bf4bb2e430
bpo-29935: Fixed error messages in the index() method of tuple, list and deque ( #887 ) ( #907 )
...
when pass indices of wrong type.
(cherry picked from commit d4edfc9abf
)
2017-03-30 19:46:59 +03:00
Serhiy Storchaka
af839fe2fe
bpo-29864: Don't use Py_SIZE for dict object. ( #747 ) ( #750 )
2017-03-22 07:45:23 +02:00
Serhiy Storchaka
6fad4090ec
bpo-28876: bool of large range raises OverflowError ( #699 ) ( #734 )
...
(cherry picked from commit e46fb86118
)
2017-03-20 09:13:47 +02:00
Serhiy Storchaka
3d258b1eb4
bpo-29116: Fix error messages for concatenating bytes and bytearray with unsupported type. ( #709 ) ( #723 )
...
(cherry picked from commit 6b5a9ec478
)
2017-03-19 21:06:29 +02:00
Xiang Zhang
faa2cc63e4
bpo-28856: Let %b format for bytes support objects that follow the buffer protocol (GH-664)
2017-03-14 15:27:01 +08:00
Yury Selivanov
fa448de97d
Fix wrapping into StopIteration of return values in generators and coroutines ( #644 ) ( #647 )
2017-03-12 17:04:06 -04:00
Xiang Zhang
df6d7b406f
[3.6] bpo-29714: Fix a regression that bytes format may fail when containing zero bytes inside. (GH-504)
2017-03-06 18:17:10 +08:00
Brian Coleman
a6e84933d2
bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is ( #402 )
...
allocated.
On PyMem_Realloc failure, _PyCode_SetExtra should free co_extra if
co_extra->ce_extras could not be allocated.
On PyMem_Realloc success, _PyCode_SetExtra should set all unused slots in
co_extra->ce_extras to NULL.
2017-03-03 00:21:53 +02:00
Mark Dickinson
d9b3cdd137
bpo-29602: fix signed zero handling in complex constructor. ( #203 ) ( #206 )
...
* Fix incorrect handling of signed zeros for complex-related classes.
* Add Misc/NEWS entry.
(cherry picked from commit 112ec38c15
)
2017-02-20 21:59:30 +00:00
INADA Naoki
ce552e2d5c
bpo-24274: fix erroneous comment in dictobject.c (GH-200)
...
lookdict_unicode() and lookdict_unicode_nodummy() may raise exception
when key is not unicode.
2017-02-20 22:58:11 +09:00
Xiang Zhang
9a4577a4bb
bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects ( #128 ) ( #186 )
2017-02-20 14:33:02 +08:00
INADA Naoki
89ddffbe9d
bpo-29438: fixed use-after-free in key sharing dict ( #39 )
2017-02-13 09:19:05 +09:00
Serhiy Storchaka
512c57cb72
Issue #27867 : Function PySlice_GetIndicesEx() is replaced with a macro if
...
Py_LIMITED_API is not set or set to the value between 0x03050400
and 0x03060000 (not including) or 0x03060100 or higher.
2017-01-25 13:25:52 +02:00
Serhiy Storchaka
b2a5be0763
Issue #27867 : Function PySlice_GetIndicesEx() is replaced with a macro if
...
Py_LIMITED_API is not set or set to the value between 0x03050400
and 0x03060000 (not including) or 0x03060100 or higher.
2017-01-25 13:23:05 +02:00
Serhiy Storchaka
4102d25b7e
Issue #29337 : Fixed possible BytesWarning when compare the code objects.
...
Warnings could be emitted at compile time.
2017-01-24 20:52:43 +02:00
Serhiy Storchaka
713640c4c9
Issue #29337 : Fixed possible BytesWarning when compare the code objects.
...
Warnings could be emitted at compile time.
2017-01-24 20:49:26 +02:00
Martin Panter
4659ddc433
Merge doc fixes from 3.5
2017-01-14 09:54:57 +00:00
Martin Panter
536d70ed33
Fix grammar, typos and markup in documentation and code comments
...
* Indent versionchanged at method level, not class level
* Mark up ``--help`` to avoid generating an en dash
* Use forward slash in Unix command line with a dollar sign ($) prompt
2017-01-14 08:23:08 +00:00
Serhiy Storchaka
42e1ea9a10
Issue #28969 : Fixed race condition in C implementation of functools.lru_cache.
...
KeyError could be raised when cached function with full cache was
simultaneously called from differen threads with the same uncached arguments.
2017-01-12 19:12:21 +02:00
Serhiy Storchaka
67796521dd
Issue #28969 : Fixed race condition in C implementation of functools.lru_cache.
...
KeyError could be raised when cached function with full cache was
simultaneously called from differen threads with the same uncached arguments.
2017-01-12 18:34:33 +02:00
Xiang Zhang
95403d74d7
Issue #29145 : Merge 3.5.
2017-01-10 10:54:19 +08:00
Xiang Zhang
b0541f4cdf
Issue #29145 : Fix overflow checks in str.replace() and str.join().
...
Based on patch by Martin Panter.
2017-01-10 10:52:00 +08:00
INADA Naoki
a634e23209
Issue #29159 : Fix regression in bytes(x) when x.__index__() raises Exception.
2017-01-06 17:32:01 +09:00
Stefan Krah
a50006c977
Merge 3.5.
2016-12-30 12:24:23 +01:00
Stefan Krah
195319e6bb
Issue #29111 : Fix memoryview signature.
2016-12-30 12:23:35 +01:00
Serhiy Storchaka
c9ad8b7a23
Issue #29073 : bytearray formatting no longer truncates on first null byte.
2016-12-28 09:54:22 +02:00
Antoine Pitrou
d741ed492f
Issue #28427 : old keys should not remove new values from
...
WeakValueDictionary when collecting from another thread.
2016-12-27 14:23:43 +01:00