| Commit message (Expand) | Author | Age | Files | Lines |
* | consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563) | Benjamin Peterson | 2017-09-14 | 1 | -2/+2 |
|
|
* | Issue #29028: Fixed possible use-after-free bugs in the subscription of the | Serhiy Storchaka | 2017-02-01 | 1 | -29/+48 |
|
|
* | avoid overflow with large buffer sizes and/or offsets (closes #21831) | Benjamin Peterson | 2014-06-24 | 1 | -2/+2 |
|
|
* | Issue #10211 : Buffer object should support the new buffer interface. | Kristján Valur Jónsson | 2013-03-19 | 1 | -2/+13 |
|
|
* | - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED | Barry Warsaw | 2012-02-21 | 1 | -1/+11 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -673/+673 |
|
|
* | Change the warning emitted for using the buffer() object; memoryview() in 3.0 | Brett Cannon | 2008-08-08 | 1 | -2/+1 |
|
|
* | Security patches from Apple: prevent int overflow when allocating memory | Neal Norwitz | 2008-07-31 | 1 | -0/+4 |
|
|
* | Merge in release25-maint r60793: | Gregory P. Smith | 2008-06-11 | 1 | -1/+6 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -13/+13 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -13/+13 |
|
|
* | Use PyErr_WarnPy3k throughout | Benjamin Peterson | 2008-04-27 | 1 | -3/+1 |
|
|
* | Move declarations to block start. | Georg Brandl | 2008-03-25 | 1 | -4/+4 |
|
|
* | Make Py3k warnings consistent w.r.t. punctuation; also respect the | Georg Brandl | 2008-03-25 | 1 | -1/+2 |
|
|
* | #2355: py3k warning for buffer(). | Georg Brandl | 2008-03-25 | 1 | -0/+5 |
|
|
* | Coverity #151: Remove deadcode. | Neal Norwitz | 2007-10-04 | 1 | -13/+0 |
|
|
* | Improve extended slicing support in builtin types and classes. Specifically: | Thomas Wouters | 2007-08-28 | 1 | -1/+154 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -2/+1 |
|
|
* | Bug #1733488: Fix compilation of bufferobject.c on AIX. | Martin v. Löwis | 2007-06-08 | 1 | -1/+1 |
|
|
* | memcmp() can return values other than -1, 0, and +1 but tp_compare | Thomas Heller | 2006-08-08 | 1 | -1/+1 |
|
|
* | Suppress warning on MacOSX about possible use before set of proc. | Skip Montanaro | 2006-06-10 | 1 | -1/+1 |
|
|
* | Fix inconsistency in naming within an enum. | Brett Cannon | 2006-06-09 | 1 | -12/+12 |
|
|
* | Buffer objects would return the read or write buffer for a wrapped object when | Brett Cannon | 2006-06-08 | 1 | -22/+71 |
|
|
* | More C++-compliance. Note especially listobject.c - to get C++ to accept the | Anthony Baxter | 2006-04-11 | 1 | -2/+2 |
|
|
* | Use proper PyArg_Parse format char for Py_ssize_t, instead of 'l', in | Thomas Wouters | 2006-02-16 | 1 | -1/+1 |
|
|
* | Revert 42400. | Martin v. Löwis | 2006-02-16 | 1 | -3/+3 |
|
|
* | Support %zd in PyErr_Format and PyString_FromFormat. | Martin v. Löwis | 2006-02-16 | 1 | -2/+2 |
|
|
* | Get rid of compiler warnings (gcc 3.3.4 on x86) | Neal Norwitz | 2006-02-16 | 1 | -3/+3 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -61/+63 |
|
|
* | Check return result for error | Neal Norwitz | 2005-12-18 | 1 | -0/+2 |
|
|
* | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 1 | -1/+4 |
|
|
* | Ensure negative offsets cannot be passed to buffer(). When composing | Neil Schemenauer | 2004-09-24 | 1 | -2/+15 |
|
|
* | Fix buffer offset calculation (need to compute it before changing | Neil Schemenauer | 2004-09-24 | 1 | -11/+7 |
|
|
* | Correct code to advance ptr to be well-formed C. | Martin v. Löwis | 2004-03-25 | 1 | -1/+1 |
|
|
* | Make buffer objects based on mutable objects (like array) safe. | Neil Schemenauer | 2004-03-11 | 1 | -82/+149 |
|
|
* | Document one of the many problems with the buffer object. | Neil Schemenauer | 2004-03-11 | 1 | -2/+9 |
|
|
* | Rename static functions, they should not have the _Py prefix. | Neil Schemenauer | 2004-03-11 | 1 | -11/+10 |
|
|
* | Call me anal, but there was a particular phrase that was speading to | Guido van Rossum | 2002-08-19 | 1 | -1/+1 |
|
|
* | Fix SF bug 546434 -- buffer slice type inconsistent. | Raymond Hettinger | 2002-06-25 | 1 | -13/+0 |
|
|
* | SF patch 568629 by Oren Tirosh: types made callable. | Guido van Rossum | 2002-06-14 | 1 | -1/+39 |
|
|
* | Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols. | Tim Peters | 2002-03-29 | 1 | -10/+0 |
|
|
* | Fix for Bug #216405: | Thomas Heller | 2001-10-19 | 1 | -4/+6 |
|
|
* | repr's converted to using PyString_FromFormat() instead of sprintf'ing | Barry Warsaw | 2001-08-24 | 1 | -13/+7 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -17/+17 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Removing warnings found by gcc -Wall | Moshe Zadka | 2000-08-04 | 1 | -4/+5 |
|
|
* | ANSI-fication of the sources. | Fred Drake | 2000-07-09 | 1 | -78/+24 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Trent Mick <trentm@activestate.com>: | Fred Drake | 2000-06-30 | 1 | -7/+7 |
|
|