summaryrefslogtreecommitdiffstats
path: root/Objects/bufferobject.c
Commit message (Expand)AuthorAgeFilesLines
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-2/+1
* Bug #1733488: Fix compilation of bufferobject.c on AIX.Martin v. Löwis2007-06-081-1/+1
* memcmp() can return values other than -1, 0, and +1 but tp_compareThomas Heller2006-08-081-1/+1
* Suppress warning on MacOSX about possible use before set of proc.Skip Montanaro2006-06-101-1/+1
* Fix inconsistency in naming within an enum.Brett Cannon2006-06-091-12/+12
* Buffer objects would return the read or write buffer for a wrapped object whenBrett Cannon2006-06-081-22/+71
* More C++-compliance. Note especially listobject.c - to get C++ to accept theAnthony Baxter2006-04-111-2/+2
* Use proper PyArg_Parse format char for Py_ssize_t, instead of 'l', inThomas Wouters2006-02-161-1/+1
* Revert 42400.Martin v. Löwis2006-02-161-3/+3
* Support %zd in PyErr_Format and PyString_FromFormat.Martin v. Löwis2006-02-161-2/+2
* Get rid of compiler warnings (gcc 3.3.4 on x86)Neal Norwitz2006-02-161-3/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-151-61/+63
* Check return result for errorNeal Norwitz2005-12-181-0/+2
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-1/+4
* Ensure negative offsets cannot be passed to buffer(). When composingNeil Schemenauer2004-09-241-2/+15
* Fix buffer offset calculation (need to compute it before changingNeil Schemenauer2004-09-241-11/+7
* Correct code to advance ptr to be well-formed C.Martin v. Löwis2004-03-251-1/+1
* Make buffer objects based on mutable objects (like array) safe.Neil Schemenauer2004-03-111-82/+149
* Document one of the many problems with the buffer object.Neil Schemenauer2004-03-111-2/+9
* Rename static functions, they should not have the _Py prefix.Neil Schemenauer2004-03-111-11/+10
* Call me anal, but there was a particular phrase that was speading toGuido van Rossum2002-08-191-1/+1
* Fix SF bug 546434 -- buffer slice type inconsistent.Raymond Hettinger2002-06-251-13/+0
* SF patch 568629 by Oren Tirosh: types made callable.Guido van Rossum2002-06-141-1/+39
* Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols.Tim Peters2002-03-291-10/+0
* Fix for Bug #216405:Thomas Heller2001-10-191-4/+6
* repr's converted to using PyString_FromFormat() instead of sprintf'ingBarry Warsaw2001-08-241-13/+7
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-17/+17
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Removing warnings found by gcc -WallMoshe Zadka2000-08-041-4/+5
* ANSI-fication of the sources.Fred Drake2000-07-091-78/+24
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-7/+7
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-4/+4
* PyBuffer_New(): Raise ValueError if size is negative (the otherFred Drake1999-08-041-1/+6
* Folded long lines.Guido van Rossum1999-03-241-9/+18
* Added check for negative offset for PyBuffer_FromObject and check forGuido van Rossum1999-03-191-1/+13
* Greg Stein: Implement the new bf_getcharbuffer function, indicatingGuido van Rossum1998-10-081-2/+18
* Make gcc -Wall happy.Guido van Rossum1998-10-071-5/+4
* Add Greg Stein's buffer object API.Guido van Rossum1998-10-071-0/+599