| Commit message (Expand) | Author | Age | Files | Lines |
* | SF 1062353: set pickling problems | Raymond Hettinger | 2004-11-09 | 1 | -2/+9 |
|
|
* | If close() fails in file_dealloc, then print an error message to | Peter Astrand | 2004-11-07 | 1 | -1/+8 |
|
|
* | SF 1055820: weakref callback vs gc vs threads | Tim Peters | 2004-10-30 | 1 | -1/+3 |
|
|
* | Wrote down the invariants of some common objects whose structure is | Armin Rigo | 2004-10-28 | 1 | -0/+12 |
|
|
* | SF bug #1054139: serious string hashing error in 2.4b1 | Raymond Hettinger | 2004-10-26 | 1 | -0/+1 |
|
|
* | Applied patch for [ 1047269 ] Buffer overwrite in PyUnicode_AsWideChar. | Marc-André Lemburg | 2004-10-15 | 1 | -2/+2 |
|
|
* | Finalize the freelist of list objects. | Raymond Hettinger | 2004-10-07 | 1 | -0/+13 |
|
|
* | Use Py_CLEAR(). Add unrelated test. | Raymond Hettinger | 2004-09-28 | 1 | -1/+1 |
|
|
* | Checkin Tim's fix to an error discussed on python-dev. | Raymond Hettinger | 2004-09-26 | 1 | -10/+20 |
|
|
* | Remove 'extern' declaration for _Py_SwappedOp. | Brett Cannon | 2004-09-25 | 1 | -1/+1 |
|
|
* | 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 |
|
|
* | float_richcompare(): Use the new Py_IS_NAN macro to ensure that, on | Tim Peters | 2004-09-23 | 1 | -11/+9 |
|
|
* | SF bug #513866: Float/long comparison anomaly. | Tim Peters | 2004-09-23 | 1 | -8/+206 |
|
|
* | A static swapped_op[] array was defined in 3 different C files, & I think | Tim Peters | 2004-09-23 | 3 | -12/+6 |
|
|
* | Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask]. | Martin v. Löwis | 2004-09-20 | 1 | -0/+11 |
|
|
* | SF bug #1030557: PyMapping_Check crashes when argument is NULL | Raymond Hettinger | 2004-09-19 | 1 | -2/+2 |
|
|
* | Initialize sep and seplen to suppress warning from gcc. | Skip Montanaro | 2004-09-16 | 1 | -3/+3 |
|
|
* | Add a missing line continuation character. | Thomas Heller | 2004-09-15 | 1 | -1/+1 |
|
|
* | Make the word "module" appear in the error string for calling the | Michael W. Hudson | 2004-09-14 | 1 | -1/+1 |
|
|
* | Move a comment back to its rightful location. | Michael W. Hudson | 2004-09-14 | 1 | -2/+2 |
|
|
* | Make the hint about the None default less ambiguous. | Walter Dörwald | 2004-09-14 | 1 | -1/+1 |
|
|
* | Enhance the docstrings for unicode.split() and string.split() | Walter Dörwald | 2004-09-14 | 1 | -2/+2 |
|
|
* | SF #1022910: Conserve memory with list.pop() | Raymond Hettinger | 2004-09-12 | 1 | -8/+11 |
|
|
* | Typo fix: 'comparisions' is not a word | Andrew M. Kuchling | 2004-09-10 | 1 | -1/+1 |
|
|
* | SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support | Walter Dörwald | 2004-09-07 | 1 | -23/+57 |
|
|
* | SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes | Raymond Hettinger | 2004-09-01 | 3 | -14/+6 |
|
|
* | long_pow(): Fix more instances of leaks in error cases. | Tim Peters | 2004-08-30 | 1 | -3/+3 |
|
|
* | SF patch 936813: fast modular exponentiation | Tim Peters | 2004-08-30 | 1 | -107/+185 |
|
|
* | SF patch 936813: fast modular exponentiation | Tim Peters | 2004-08-29 | 1 | -21/+79 |
|
|
* | PyUnicode_Join(): Bozo Alert. While this is chugging along, it may | Tim Peters | 2004-08-27 | 1 | -0/+12 |
|
|
* | PyUnicode_Join(): Rewrote to use PySequence_Fast(). This doesn't do | Tim Peters | 2004-08-27 | 1 | -126/+96 |
|
|
* | PyUnicode_Join(): Missed a spot where I intended a cast from size_t to | Tim Peters | 2004-08-27 | 1 | -1/+1 |
|
|
* | PyUnicode_Join(): Two primary aims: | Tim Peters | 2004-08-27 | 1 | -40/+120 |
|
|
* | Fix docstring typo. | Raymond Hettinger | 2004-08-25 | 1 | -1/+1 |
|
|
* | Stop producing or using OverflowWarning. PEP 237 thought this would | Tim Peters | 2004-08-25 | 1 | -36/+4 |
|
|
* | SF Patch #1007087: Return new string for single subclass joins (Bug #1001011) | Raymond Hettinger | 2004-08-23 | 1 | -12/+8 |
|
|
* | Fix repr for negative imaginary part. Fixes #1013908. | Martin v. Löwis | 2004-08-22 | 1 | -2/+6 |
|
|
* | Patch #980082: Missing INCREF in PyType_Ready. | Martin v. Löwis | 2004-08-18 | 1 | -1/+3 |
|
|
* | SF patch #1005778, Fix seg fault if list object is modified during list.index() | Neal Norwitz | 2004-08-13 | 1 | -3/+1 |
|
|
* | This is my patch | Michael W. Hudson | 2004-08-12 | 1 | -4/+32 |
|
|
* | Previous commit was viewed as "perverse". Changed to just cast the unused | Brett Cannon | 2004-08-08 | 1 | -1/+3 |
|
|
* | Bug 1003935: xrange overflows | Tim Peters | 2004-08-08 | 1 | -1/+16 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2004-08-08 | 1 | -5/+5 |
|
|
* | This was quite a dark bug in my recent in-place string concatenation | Armin Rigo | 2004-08-07 | 1 | -1/+2 |
|
|
* | Fixed some compiler warnings. | Armin Rigo | 2004-08-07 | 1 | -2/+2 |
|
|
* | Subclasses of string can no longer be interned. The semantics of | Jeremy Hylton | 2004-08-07 | 1 | -22/+12 |
|
|
* | SF bug #1004669: Type returned from .keys() is not checked | Raymond Hettinger | 2004-08-07 | 1 | -0/+5 |
|
|
* | SF #989185: Drop unicode.iswide() and unicode.width() and add | Hye-Shik Chang | 2004-08-04 | 3 | -437/+299 |
|
|
* | Be more careful about maintaining the invariants; it was actually | Fred Drake | 2004-08-03 | 1 | -3/+25 |
|
|