Benjamin Peterson
|
bcf8554fd4
|
remove buzzword (closes #23210)
|
2015-01-09 16:40:23 -06:00 |
Serhiy Storchaka
|
b757c83ec6
|
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
|
2014-12-05 22:25:22 +02:00 |
Serhiy Storchaka
|
83cf99d733
|
Issue #20335: bytes constructor now raises TypeError when encoding or errors
is specified with non-string argument. Based on patch by Renaud Blanch.
|
2014-12-02 09:24:06 +02:00 |
Serhiy Storchaka
|
133b11b566
|
Issue #22975: Close block at right place.
|
2014-12-01 18:56:28 +02:00 |
Benjamin Peterson
|
e823933f9f
|
remove tautological condition (closes #22954)
|
2014-11-26 23:03:11 -06:00 |
Antoine Pitrou
|
cc23154d02
|
Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform.
|
2014-11-02 18:40:09 +01:00 |
Georg Brandl
|
e1d26f377e
|
Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.
|
2014-10-31 13:12:57 +01:00 |
Antoine Pitrou
|
d696732025
|
Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode.
|
2014-10-18 00:35:00 +02:00 |
Benjamin Peterson
|
fa5021699a
|
Merge 3.3
|
2014-10-15 23:58:32 -04:00 |
Antoine Pitrou
|
b6dc9b7554
|
Fixed signed/unsigned comparison warning
|
2014-10-15 23:14:53 +02:00 |
Benjamin Peterson
|
9c422f3c3d
|
merge 3.3
|
2014-10-15 12:17:33 -04:00 |
Benjamin Peterson
|
1e211ff10d
|
it suffices to check for PY_SSIZE_T_MAX overflow (#22643)
|
2014-10-15 12:17:21 -04:00 |
Benjamin Peterson
|
60d7a73194
|
Merge 3.3
|
2014-10-15 11:51:12 -04:00 |
Benjamin Peterson
|
c0e64f5027
|
make sure length is unsigned
|
2014-10-15 11:51:05 -04:00 |
Benjamin Peterson
|
1cbb3fe775
|
merge 3.3 (#22643)
|
2014-10-15 11:48:41 -04:00 |
Benjamin Peterson
|
e1bd38c03c
|
fix integer overflow in unicode case operations (closes #22643)
|
2014-10-15 11:47:36 -04:00 |
Antoine Pitrou
|
9086f9260f
|
Issue #22604: Fix assertion error in debug mode when dividing a complex number by (nan+0j).
|
2014-10-10 23:49:32 +02:00 |
Benjamin Peterson
|
43030ee780
|
merge 3.3 (#22520)
|
2014-09-29 23:02:35 -04:00 |
Benjamin Peterson
|
736b8012b4
|
prevent overflow in unicode_repr (closes #22520)
|
2014-09-29 23:02:15 -04:00 |
Benjamin Peterson
|
c2cfa8ddd8
|
merge 3.3
|
2014-09-29 19:12:37 -04:00 |
Benjamin Peterson
|
d48bc9468f
|
these variables ought to be Py_ssize_t
|
2014-09-29 19:12:26 -04:00 |
Benjamin Peterson
|
18f836fb65
|
merge 3.3 (closes #22519)
|
2014-09-29 19:09:49 -04:00 |
Benjamin Peterson
|
42ff105539
|
fix overflow checking in PyBytes_Repr (closes #22519)
|
2014-09-29 19:01:18 -04:00 |
Benjamin Peterson
|
2b76ce6d27
|
merge 3.3 (closes #22518)
|
2014-09-29 18:50:06 -04:00 |
Benjamin Peterson
|
a1c1be4e03
|
cleanup overflowing handling in unicode_decode_call_errorhandler and unicode_encode_ucs1 (closes #22518)
|
2014-09-29 18:18:57 -04:00 |
Benjamin Peterson
|
1cc9520327
|
s/stringobject/bytesobject/ (closes #22036)
Patch by Martin Matusiak.
|
2014-07-23 21:39:37 -07:00 |
Antoine Pitrou
|
acc8cf2cfa
|
Issue #21897: Fix a crash with the f_locals attribute with closure variables when frame.clear() has been called.
|
2014-07-04 20:24:13 -04:00 |
Victor Stinner
|
a33bce0945
|
Issue #21892, #21893: Partial revert of changeset 4f55e802baf0, PyErr_Format()
uses "%zd" for Py_ssize_t, not PY_FORMAT_SIZE_T
|
2014-07-04 22:47:46 +02:00 |
Victor Stinner
|
293f3f526d
|
Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zu to format C
size_t, because %zi/%u is not supported on all platforms.
|
2014-07-01 08:57:10 +02:00 |
Benjamin Peterson
|
1791c224dd
|
use NULL not 0
|
2014-06-26 23:29:13 -07:00 |
Nick Coghlan
|
5b1fdc1e37
|
Issue #21669: Special case print & exec syntax errors
|
2014-06-16 19:48:02 +10:00 |
Victor Stinner
|
1c6970fac9
|
Issue #21418: Fix a crash in the builtin function super() when called without
argument and without current frame (ex: embedded Python).
|
2014-05-13 01:32:36 +02:00 |
Zachary Ware
|
715ef02ddc
|
Fix a typo in the docstring of nb_index.
|
2014-04-18 09:23:14 -05:00 |
Zachary Ware
|
ea42b4cc80
|
Fix a typo in the signature for object.__ge__
|
2014-04-18 09:14:31 -05:00 |
Victor Stinner
|
69598d4ccf
|
Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format
character for the "end" parameter
|
2014-04-04 20:59:44 +02:00 |
Benjamin Peterson
|
9b09ba1234
|
bail in unicode error's __str__ methods if the objects are not properly initialized (closes #21134)
|
2014-04-02 12:15:06 -04:00 |
Antoine Pitrou
|
04d17d30b4
|
Issue #21073: explain why Py_ReprEnter() allows for a missing thread state.
|
2014-03-31 22:04:38 +02:00 |
Benjamin Peterson
|
d455ce4fd4
|
merge 3.3
|
2014-03-30 19:52:39 -04:00 |
Benjamin Peterson
|
0ad6098b67
|
merge 3.2
|
2014-03-30 19:52:22 -04:00 |
Benjamin Peterson
|
23cf403ca1
|
fix expandtabs overflow detection to be consistent and not rely on signed overflow
|
2014-03-30 19:47:57 -04:00 |
Benjamin Peterson
|
df813791db
|
correct the fix for #20637; allow slot descriptor inheritance to take place before creating cached keys
|
2014-03-17 15:57:17 -05:00 |
Benjamin Peterson
|
af9049ebbc
|
merge 3.3
|
2014-03-15 12:21:47 -05:00 |
Benjamin Peterson
|
4a42cd48d5
|
avoid referencing past the bounds of an array
|
2014-03-15 12:21:28 -05:00 |
Benjamin Peterson
|
1aca78da62
|
merge 3.3
|
2014-03-14 21:54:41 -05:00 |
Benjamin Peterson
|
ef87f8cb57
|
avoid referencing out-of-bounds memory
|
2014-03-14 21:54:31 -05:00 |
Benjamin Peterson
|
45c9dceb56
|
fix c89 declaration order
|
2014-03-14 21:53:51 -05:00 |
Benjamin Peterson
|
dfa822811a
|
merge 3.3
|
2014-03-14 21:47:36 -05:00 |
Benjamin Peterson
|
041c38a790
|
don't do pointer arithmetic with signed numbers
|
2014-03-14 21:47:23 -05:00 |
Kristján Valur Jónsson
|
25dded041f
|
Make the various iterators' "setstate" sliently and consistently clip the
index. This avoids the possibility of setting an iterator to an invalid
state.
|
2014-03-05 13:47:57 +00:00 |
Kristján Valur Jónsson
|
4ca688edeb
|
Fix pickling of rangeiter. rangeiter_setstate would not allow setting it
to the exhausted state.
|
2014-03-04 23:19:24 +00:00 |