index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
subtype_dealloc(): Simplified overly contorted retracking logic. With
Tim Peters
2003-11-13
1
-6/+5
*
subtype_dealloc(): A more complete fix for critical bug 840829 +
Tim Peters
2003-11-13
1
-6/+19
*
SF bug 840829: weakref callbacks and gc corrupt memory.
Tim Peters
2003-11-12
1
-1/+6
*
Improve the reverse list iterator to free memory as soon as the iterator
Raymond Hettinger
2003-11-08
1
-1/+4
*
Minor code fixup. Make sure that len reflects the current list size.
Raymond Hettinger
2003-11-08
1
-0/+1
*
Optimize reversed(list) using a custom iterator.
Raymond Hettinger
2003-11-07
2
-4/+98
*
Implement and apply PEP 322, reverse iteration
Raymond Hettinger
2003-11-06
2
-1/+161
*
Fix compiler warning about possible use of n without assignment.
Jeremy Hylton
2003-11-03
1
-5/+6
*
Use PyTuple_Pack() to simplify enumerate().
Raymond Hettinger
2003-11-02
1
-5/+1
*
Add list.sorted() classmethod.
Raymond Hettinger
2003-10-29
1
-0/+37
*
Deleting cyclic object comparison.
Armin Rigo
2003-10-28
2
-186/+12
*
Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItem
Raymond Hettinger
2003-10-27
1
-1/+1
*
Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap().
Walter Dörwald
2003-10-24
1
-19/+20
*
Avoid confusing name for the 3rd argument to str.replace().
Fred Drake
2003-10-22
1
-3/+3
*
Removing bogus Py_DECREF() reported by Armin Rigo (SF bug 812353).
Jeremy Hylton
2003-10-21
1
-1/+0
*
Fix indentation.
Jeremy Hylton
2003-10-21
1
-1/+1
*
Fix a bunch of typos in documentation, docstrings and comments.
Walter Dörwald
2003-10-20
1
-1/+1
*
Make CObjects mutable. Fixes #477441.
Martin v. Löwis
2003-10-19
1
-0/+14
*
Patch #825679: Clarify semantics of .isfoo on empty strings.
Martin v. Löwis
2003-10-18
2
-22/+24
*
Patch #809535: Mention behaviour of seek on text files. Backported to 2.3.
Martin v. Löwis
2003-10-18
1
-1/+3
*
Fix typo found by Neal Norwitz.
Raymond Hettinger
2003-10-16
1
-1/+1
*
* list.sort() now supports three keyword arguments: cmp, key, and reverse.
Raymond Hettinger
2003-10-16
1
-5/+228
*
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger
2003-10-12
4
-29/+28
*
Extended tuple's C API to include a new function, PyTuple_Pack() that is
Raymond Hettinger
2003-10-12
1
-0/+22
*
Use the simpler and faster PyArg_UnpackTuple() instead of
Raymond Hettinger
2003-10-11
1
-24/+24
*
SF bug #820397: __nonzero__() returns 1/0
Raymond Hettinger
2003-10-11
1
-1/+15
*
Return a bool rather than an int from proxy_has_key().
Guido van Rossum
2003-10-09
1
-1/+4
*
Fix leak introduced by previous typeobject.c checkin.
Guido van Rossum
2003-10-09
1
-4/+3
*
SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net):
Guido van Rossum
2003-10-08
1
-2/+4
*
Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr.
Jeremy Hylton
2003-10-06
1
-1/+1
*
On c.l.py, Martin v. Löwis said that Py_UNICODE could be of a signed type,
Tim Peters
2003-09-16
1
-137/+145
*
Double-fix of crash in Unicode freelist handling.
Jeremy Hylton
2003-09-16
1
-2/+7
*
Fix leak in classobject.c. The leak surfaced on the error exit when
Raymond Hettinger
2003-09-16
1
-0/+1
*
Change checks of PyUnicode_Resize() return value for clarity.
Jeremy Hylton
2003-09-16
1
-18/+17
*
Only release buffer after file has been closed. Fixes #800824.
Martin v. Löwis
2003-09-07
1
-1/+1
*
SF bug 801631: file.truncate fault on windows.
Tim Peters
2003-09-07
1
-74/+66
*
SF bug #800796: Difference between hash() and __hash__()
Raymond Hettinger
2003-09-05
1
-1/+8
*
Patch #788249: Pass an explicit buffer to setvbuf in PyFile_SetBufSize().
Martin v. Löwis
2003-09-04
1
-5/+19
*
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
[next]