Antoine Pitrou
|
9ed5f27266
|
Issue #18722: Remove uses of the "register" keyword in C code.
|
2013-08-13 20:18:52 +02:00 |
Christian Heimes
|
6895947570
|
Propagate error when PyByteArray_Resize() fails in bytearray_translate()
CID 715334
|
2013-07-21 02:04:44 +02:00 |
Christian Heimes
|
c731bbe665
|
Propagate error when PyByteArray_Resize() fails in bytearray_translate()
CID 715334
|
2013-07-21 02:04:35 +02:00 |
Christian Heimes
|
e9d08cf450
|
Fix compilation on Windows
|
2012-11-03 23:08:27 +01:00 |
Christian Heimes
|
d081fbba58
|
Fix compilation on Windows
|
2012-11-03 23:08:18 +01:00 |
Christian Heimes
|
6d26ade920
|
Fix compilation on Windows
|
2012-11-03 23:07:59 +01:00 |
Ezio Melotti
|
212843b29f
|
#8401: merge with 3.3.
|
2012-11-03 21:24:47 +02:00 |
Ezio Melotti
|
7376801f61
|
#8401: merge with 3.2.
|
2012-11-03 21:22:41 +02:00 |
Ezio Melotti
|
c64bcbec4b
|
#8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error.
|
2012-11-03 21:19:06 +02:00 |
Antoine Pitrou
|
cfc22b4a9b
|
Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects.
|
2012-10-16 21:07:23 +02:00 |
Armin Ronacher
|
aa9a79d279
|
Issue #16148: implemented PEP 424
|
2012-10-06 14:03:24 +02:00 |
Stefan Krah
|
7d12d9df13
|
Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays.
|
2012-07-28 12:25:55 +02:00 |
Antoine Pitrou
|
a701388de1
|
Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI.
|
2012-04-05 00:04:20 +02:00 |
Kristján Valur Jónsson
|
31668b8f7a
|
Issue #14288: Serialization support for builtin iterators.
|
2012-04-03 10:49:41 +00:00 |
Antoine Pitrou
|
29b964d0dd
|
Issue #13019: Fix potential reference leaks in bytearray.extend().
Patch by Suman Saha.
|
2012-04-01 16:08:11 +02:00 |
Antoine Pitrou
|
58bb82e7b4
|
Issue #13019: Fix potential reference leaks in bytearray.extend().
Patch by Suman Saha.
|
2012-04-01 16:05:46 +02:00 |
Ezio Melotti
|
cda6b6d60d
|
#14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearray.split may now be passed as keyword arguments.
|
2012-02-26 09:39:55 +02:00 |
Victor Stinner
|
bb2e9c477d
|
Issue #11231: Fix bytes and bytearray docstrings
Patch written by Brice Berna.
|
2011-12-17 23:18:07 +01:00 |
Victor Stinner
|
e010fc029d
|
Issue #11231: Fix bytes and bytearray docstrings
Patch written by Brice Berna.
|
2011-12-17 23:18:43 +01:00 |
Antoine Pitrou
|
b0e1f8b38b
|
Issue #13503: Use a more efficient reduction format for bytearrays with
pickle protocol >= 3. The old reduction format is kept with older
protocols in order to allow unpickling under Python 2.
Patch by Irmen de Jong.
|
2011-12-05 20:40:08 +01:00 |
Antoine Pitrou
|
39aba4f563
|
Use the small object allocator for small bytearrays
|
2011-11-12 21:15:28 +01:00 |
Antoine Pitrou
|
ac65d96777
|
Issue #12170: The count(), find(), rfind(), index() and rindex() methods
of bytes and bytearray objects now accept an integer between 0 and 255
as their first argument. Patch by Petri Lehtinen.
|
2011-10-20 23:54:17 +02:00 |
Martin v. Löwis
|
bd928fef42
|
Rename _Py_identifier to _Py_IDENTIFIER.
|
2011-10-14 10:20:37 +02:00 |
Victor Stinner
|
f5cff56a1b
|
Issue #13088: Add shared Py_hexdigits constant to format a number into base 16
|
2011-10-14 02:13:11 +02:00 |
Martin v. Löwis
|
1ee1b6fe0d
|
Use identifier API for PyObject_GetAttrString.
|
2011-10-10 18:11:30 +02:00 |
Victor Stinner
|
6430fd56b4
|
Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODE
|
2011-09-29 04:02:13 +02:00 |
Martin v. Löwis
|
d63a3b8beb
|
Implement PEP 393.
|
2011-09-28 07:41:54 +02:00 |
Mark Dickinson
|
0d5f6adbb3
|
Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.splitlines, bytes.splitlines and bytearray.splitlines.
|
2011-09-24 09:14:39 +01:00 |
Brian Curtin
|
dfc80e3d97
|
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.
The macro was introduced in #12724.
|
2011-08-10 20:28:54 -05:00 |
Senthil Kumaran
|
fcdaaa9011
|
merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject.
|
2011-07-27 23:34:29 +08:00 |
Senthil Kumaran
|
53516a82df
|
Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject.
|
2011-07-27 23:33:54 +08:00 |
Ezio Melotti
|
bf1253b25a
|
#6780: merge with 3.2.
|
2011-04-26 06:45:24 +03:00 |
Ezio Melotti
|
f2b3f780a1
|
#6780: merge with 3.1.
|
2011-04-26 06:40:59 +03:00 |
Ezio Melotti
|
ba42fd5801
|
#6780: fix starts/endswith error message to mention that tuples are accepted too.
|
2011-04-26 06:09:45 +03:00 |
Jesus Cea
|
c1ceb64e41
|
MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828)
|
2011-04-20 17:59:29 +02:00 |
Jesus Cea
|
6159ee3cf5
|
MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828)
|
2011-04-20 17:42:50 +02:00 |
Jesus Cea
|
ac4515063c
|
startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828)
|
2011-04-20 17:09:23 +02:00 |
Ezio Melotti
|
4969f709cc
|
#11515: Merge with 3.1.
|
2011-03-15 05:59:46 +02:00 |
Ezio Melotti
|
42da663e6f
|
#11515: fix several typos. Patch by Piotr Kasprzyk.
|
2011-03-15 05:18:48 +02:00 |
Ezio Melotti
|
373089239b
|
#11515: Merge with 3.2.
|
2011-03-15 06:03:08 +02:00 |
Eli Bendersky
|
e0c8635d89
|
Merged revisions 88735 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88735 | eli.bendersky | 2011-03-04 06:55:25 +0200 (Fri, 04 Mar 2011) | 2 lines
Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays
........
|
2011-03-04 05:10:57 +00:00 |
Eli Bendersky
|
1bc4f193d8
|
Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays
|
2011-03-04 04:55:25 +00:00 |
Eli Bendersky
|
4db28d3343
|
Issue #10516: added copy() and clear() methods to bytearrays as well
|
2011-03-03 18:21:02 +00:00 |
Georg Brandl
|
f6c8fd62b9
|
Merged revisions 86537,86867-86868,86881,86887,86913-86915,86931-86933,86960,86964,86974,86980,86996,87008,87050 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
r86537 | georg.brandl | 2010-11-19 23:09:04 +0100 (Fr, 19 Nov 2010) | 1 line
Do not put a raw REPLACEMENT CHARACTER in the document.
........
r86867 | georg.brandl | 2010-11-29 15:50:54 +0100 (Mo, 29 Nov 2010) | 1 line
Fix indentation bug.
........
r86868 | georg.brandl | 2010-11-29 15:53:15 +0100 (Mo, 29 Nov 2010) | 1 line
Fix heading style inconsistencies.
........
r86881 | georg.brandl | 2010-11-30 08:43:28 +0100 (Di, 30 Nov 2010) | 1 line
#10584: fix bad links.
........
r86887 | georg.brandl | 2010-11-30 15:57:54 +0100 (Di, 30 Nov 2010) | 1 line
Fix typo.
........
r86913 | georg.brandl | 2010-12-01 16:32:43 +0100 (Mi, 01 Dez 2010) | 1 line
Add missing word, and add a better reference to the actual function.
........
r86914 | georg.brandl | 2010-12-01 16:36:33 +0100 (Mi, 01 Dez 2010) | 1 line
#10594: fix parameter names in PyList API docs.
........
r86915 | georg.brandl | 2010-12-01 16:44:25 +0100 (Mi, 01 Dez 2010) | 1 line
Fix some markup and style in the unittest docs.
........
r86931 | georg.brandl | 2010-12-02 10:06:12 +0100 (Do, 02 Dez 2010) | 1 line
Fix-up documentation of makedirs().
........
r86932 | david.malcolm | 2010-12-02 17:41:00 +0100 (Do, 02 Dez 2010) | 2 lines
Fix spelling of Jamie Zawinski's surname in urllib.parse docstring (issue 10606)
........
r86933 | georg.brandl | 2010-12-02 19:02:01 +0100 (Do, 02 Dez 2010) | 1 line
#10597: fix Py_SetPythonHome docs by pointing to where the meaning of PYTHONHOME is already documented.
........
r86960 | georg.brandl | 2010-12-03 08:55:44 +0100 (Fr, 03 Dez 2010) | 1 line
#10360: catch TypeError in WeakSet.__contains__, just like WeakKeyDictionary does.
........
r86964 | georg.brandl | 2010-12-03 10:58:38 +0100 (Fr, 03 Dez 2010) | 1 line
#10549: fix interface of docclass() for text documenter.
........
r86974 | georg.brandl | 2010-12-03 16:30:09 +0100 (Fr, 03 Dez 2010) | 1 line
Markup consistency fixes.
........
r86980 | georg.brandl | 2010-12-03 18:19:27 +0100 (Fr, 03 Dez 2010) | 1 line
Fix punctuation.
........
r86996 | georg.brandl | 2010-12-03 20:56:42 +0100 (Fr, 03 Dez 2010) | 1 line
Fix indentation.
........
r87008 | georg.brandl | 2010-12-04 10:04:04 +0100 (Sa, 04 Dez 2010) | 1 line
Fix typo.
........
r87050 | georg.brandl | 2010-12-04 18:09:30 +0100 (Sa, 04 Dez 2010) | 1 line
Fix typo.
........
|
2011-02-25 09:48:21 +00:00 |
Brett Cannon
|
b94767ff44
|
Issue #8914: fix various warnings from the Clang static analyzer v254.
|
2011-02-22 20:15:44 +00:00 |
Benjamin Peterson
|
28a4dce6a8
|
remove (un)transform methods
|
2010-12-12 01:33:04 +00:00 |
Georg Brandl
|
f3fa5685e8
|
Fix typo.
|
2010-12-04 17:09:30 +00:00 |
Martin v. Löwis
|
4d0d471a80
|
Merge branches/pep-0384.
|
2010-12-03 20:14:31 +00:00 |
Georg Brandl
|
02524629f3
|
#7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2.
|
2010-12-02 18:06:51 +00:00 |
Victor Stinner
|
c911bbfd5d
|
str, bytes, bytearray docstring: remove unnecessary [...]
|
2010-11-07 19:04:46 +00:00 |