| Commit message (Expand) | Author | Age | Files | Lines |
* | SF patch #798467: Update docstring of has_key for bool changes | Raymond Hettinger | 2003-09-01 | 2 | -2/+2 |
|
|
* | Remove 'e.g.' from error message | Raymond Hettinger | 2003-08-30 | 1 | -3/+3 |
|
|
* | SF bug #795506: Wrong handling of string format code for float values. | Raymond Hettinger | 2003-08-27 | 2 | -0/+6 |
|
|
* | Fix SF #789402, Memory leak on open() | Neal Norwitz | 2003-08-15 | 1 | -0/+1 |
|
|
* | Fix refcounting leak in charmaptranslate_lookup() | Walter Dörwald | 2003-08-15 | 1 | -0/+1 |
|
|
* | Fix another refcounting leak in PyUnicode_EncodeCharmap(). | Walter Dörwald | 2003-08-15 | 1 | -1/+3 |
|
|
* | Fix another refcounting leak (in PyUnicode_DecodeUnicodeEscape()). | Walter Dörwald | 2003-08-15 | 1 | -0/+2 |
|
|
* | Fix for | Michael W. Hudson | 2003-08-15 | 2 | -5/+17 |
|
|
* | My last fix left n used unitialized in tha a==b case. | Michael W. Hudson | 2003-08-15 | 1 | -1/+1 |
|
|
* | complex_new(): This could leak when the argument was neither string nor | Tim Peters | 2003-08-15 | 1 | -0/+3 |
|
|
* | Fix refcount leak in PyUnicode_EncodeCharmap(). The bug surfaces | Walter Dörwald | 2003-08-14 | 1 | -3/+3 |
|
|
* | Fix reference leak noted in test_types: | Michael W. Hudson | 2003-08-14 | 1 | -9/+9 |
|
|
* | Add a couple of decrefs to error paths. | Michael W. Hudson | 2003-08-11 | 1 | -2/+4 |
|
|
* | Fix silly typo in comment. | Michael W. Hudson | 2003-08-11 | 1 | -1/+1 |
|
|
* | /* XXX From here until type is allocated, "return NULL" leaks bases! */ | Michael W. Hudson | 2003-08-08 | 1 | -2/+9 |
|
|
* | Repair refcounting on error return from type_set_bases. | Michael W. Hudson | 2003-08-07 | 1 | -3/+6 |
|
|
* | Remove code that tried to warn about shadowing builtin names after a | Neil Schemenauer | 2003-07-16 | 1 | -66/+1 |
|
|
* | Remove stray comments. | Jeremy Hylton | 2003-07-16 | 1 | -1/+0 |
|
|
* | Remove unnecessary check in tests for slots allowed. | Jeremy Hylton | 2003-07-16 | 1 | -1/+1 |
|
|
* | Remove proxy_print(), since that caused an inconsistency between | Fred Drake | 2003-07-14 | 1 | -10/+2 |
|
|
* | Add whitespace. | Jeremy Hylton | 2003-07-11 | 1 | -3/+3 |
|
|
* | Support 'mbcs' as a 'built-in' encoding, so the C API can use it without | Mark Hammond | 2003-07-01 | 1 | -0/+19 |
|
|
* | Fix SF 762891: "del p[key]" on proxy object raises SystemError() | Raymond Hettinger | 2003-06-30 | 1 | -1/+5 |
|
|
* | SF patch 703666: Several objects don't decref tmp on failure in subtype_new | Raymond Hettinger | 2003-06-28 | 4 | -4/+13 |
|
|
* | Require that __nonzero__() return a bool or exactly an int. | Jeremy Hylton | 2003-06-27 | 1 | -6/+2 |
|
|
* | Check return type of __nonzero__() method. | Jeremy Hylton | 2003-06-27 | 1 | -1/+13 |
|
|
* | Whitespace normalization. | Walter Dörwald | 2003-06-25 | 1 | -3/+3 |
|
|
* | Fix whitespace. | Walter Dörwald | 2003-06-18 | 1 | -1/+1 |
|
|
* | SF bug #753451: classmethod abuse --> SystemError | Raymond Hettinger | 2003-06-18 | 1 | -0/+6 |
|
|
* | Fix typo in comment. | Walter Dörwald | 2003-06-17 | 1 | -1/+1 |
|
|
* | Use _PyEval_SliceIndex to handle list.index() calls with | Walter Dörwald | 2003-06-17 | 1 | -1/+3 |
|
|
* | Whitespace normalization. | Walter Dörwald | 2003-06-17 | 1 | -6/+6 |
|
|
* | Fix sloppy index() implementation: | Guido van Rossum | 2003-06-17 | 1 | -2/+12 |
|
|
* | SF #754014: list.index() should accept optional start, end arguments | Raymond Hettinger | 2003-06-17 | 1 | -5/+10 |
|
|
* | - SF patch 751998 fixes an unwanted side effect of the previous fix | Guido van Rossum | 2003-06-13 | 1 | -5/+13 |
|
|
* | Fixed a comment. | Brett Cannon | 2003-06-11 | 1 | -1/+1 |
|
|
* | Warn about creating global variables by __setattr__ that shadow builtin | Neil Schemenauer | 2003-06-09 | 1 | -1/+66 |
|
|
* | Fix SF #749831, copy raises SystemError when getstate raises exception | Neal Norwitz | 2003-06-08 | 1 | -0/+2 |
|
|
* | Fix for SF 742911. We now clear the weakrefs *before* calling __del__ | Guido van Rossum | 2003-05-29 | 1 | -11/+12 |
|
|
* | Add notes on use cases with paired accesses to the same key. | Raymond Hettinger | 2003-05-28 | 1 | -5/+30 |
|
|
* | * Beefed-up tests | Raymond Hettinger | 2003-05-28 | 1 | -13/+42 |
|
|
* | SF bug 705231: Assertion failed, python aborts. | Tim Peters | 2003-05-24 | 1 | -6/+38 |
|
|
* | PyType_Ready(): Complain if the type is a base type, and gc'able, and | Tim Peters | 2003-05-21 | 1 | -1/+31 |
|
|
* | SF bug #604716: faster [None]*n or []*n | Raymond Hettinger | 2003-05-21 | 1 | -0/+12 |
|
|
* | Fixing the previous patch to have the changes be to the proper docstrings. | Brett Cannon | 2003-05-20 | 1 | -8/+8 |
|
|
* | Fix docstrings for __(get|set|del)slice__ to mention that negative indices ar... | Brett Cannon | 2003-05-20 | 1 | -3/+9 |
|
|
* | Only encode Unicode objects when printing them raw. | Martin v. Löwis | 2003-05-18 | 1 | -1/+2 |
|
|
* | Consider \U-escapes in raw-unicode-escape. Fixes #444514. | Martin v. Löwis | 2003-05-18 | 1 | -3/+42 |
|
|
* | Removed the out of date and no-longer-referenced xxobject.c example | Jim Fulton | 2003-05-16 | 1 | -108/+0 |
|
|
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -1/+1 |
|
|