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
*
Use Py_ssize_t
Neal Norwitz
2006-06-19
1
-22/+22
*
Patch #1507676: improve exception messages in abstract.c, object.c and typeob...
Georg Brandl
2006-06-18
3
-64/+81
*
Patch #1455898: Incremental mode for "mbcs" codec.
Martin v. Löwis
2006-06-14
1
-39/+175
*
If a classic class defined a __coerce__() method that just returned its two
Brett Cannon
2006-06-13
1
-0/+3
*
Initialize the type object so pychecker can't crash the interpreter.
Neal Norwitz
2006-06-13
1
-0/+2
*
Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CR...
Kristján Valur Jónsson
2006-06-12
2
-1/+38
*
Get rid of f_restricted too. Doc the other 4 ints that were already removed
Neal Norwitz
2006-06-12
1
-2/+7
*
Don't leak the list object if there's an error allocating the item storage. ...
Neal Norwitz
2006-06-12
1
-1/+3
*
f_code can't be NULL based on Frame_New and other code that derefs it.
Neal Norwitz
2006-06-11
1
-2/+2
*
Update doc to make it agree with code.
Neal Norwitz
2006-06-11
1
-10/+4
*
Suppress warning on MacOSX about possible use before set of proc.
Skip Montanaro
2006-06-10
1
-1/+1
*
Patch #1495999: Part two of Windows CE changes.
Martin v. Löwis
2006-06-10
1
-2/+2
*
SF bug #1503294.
Armin Rigo
2006-06-10
1
-1/+1
*
Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError.
Georg Brandl
2006-06-10
2
-4/+4
*
Fix bug introduced in rev. 46806 by not having variable declaration at the to...
Brett Cannon
2006-06-09
1
-2/+4
*
An object with __call__ as an attribute, when called, will have that attribut...
Brett Cannon
2006-06-09
1
-0/+8
*
RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first...
Georg Brandl
2006-06-09
2
-80/+140
*
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
*
Bug #1502805: don't alias file.__exit__ to file.close since the
Georg Brandl
2006-06-08
1
-1/+18
*
(arre, arigo) SF bug #1350060
Armin Rigo
2006-06-08
2
-10/+33
*
Fix coding style guide bug.
Brett Cannon
2006-06-06
1
-1/+2
*
Repair refleaks in unicodeobject.
Georg Brandl
2006-06-04
1
-0/+3
*
Patch #1359618: Speed-up charmap encoder.
Martin v. Löwis
2006-06-04
1
-49/+285
*
SF #1499797, Fix for memory leak in WindowsError_str
Neal Norwitz
2006-06-04
1
-1/+0
*
_PyObject_DebugMalloc(): The return value should add
Tim Peters
2006-06-04
1
-1/+1
*
In a PYMALLOC_DEBUG build obmalloc adds extra debugging info
Tim Peters
2006-06-04
1
-116/+124
*
Fix memory leak found by valgrind.
Neal Norwitz
2006-06-02
1
-1/+0
*
Armin committed his patch while I was reviewing it (I'm sure
Tim Peters
2006-06-01
1
-28/+40
*
[ 1497053 ] Let dicts propagate the exceptions in user __eq__().
Armin Rigo
2006-06-01
1
-50/+107
*
Correctly allocate complex types with tp_alloc. (bug #1498638)
Georg Brandl
2006-06-01
1
-2/+2
*
Correctly unpickle 2.4 exceptions via __setstate__ (patch #1498571)
Georg Brandl
2006-06-01
1
-0/+24
*
Remove ; at end of macro. There was a compiler recently that warned
Neal Norwitz
2006-06-01
1
-1/+1
*
changed count to return 0 for slices outside the source string
Fredrik Lundh
2006-05-30
1
-1/+1
*
changed find/rfind to return -1 for matches outside the source string
Fredrik Lundh
2006-05-30
1
-10/+11
*
PyLong_FromString(): Continued fraction analysis (explained in
Tim Peters
2006-05-30
1
-3/+74
*
Do the check for no keyword arguments in __init__ so that
Georg Brandl
2006-05-30
1
-3/+3
*
Disallow keyword args for exceptions.
Georg Brandl
2006-05-30
1
-0/+3
*
Add a test case for exception pickling. args is never NULL.
Georg Brandl
2006-05-30
1
-11/+8
*
Restore exception pickle support. #1497319.
Georg Brandl
2006-05-30
1
-1/+11
*
dict_print(): So that Neal & I don't spend the rest of
Tim Peters
2006-05-30
1
-4/+5
*
dict_print(): Explicitly narrow the return value
Tim Peters
2006-05-30
1
-1/+1
*
No DOWNCAST is required since sizeof(Py_ssize_t) >= sizeof(int) and Py_ReprEn...
Neal Norwitz
2006-05-30
1
-1/+1
*
Use Py_SAFE_DOWNCAST for safety. Fix format strings. Remove 2 more stray | ...
Neal Norwitz
2006-05-30
1
-6/+6
*
Remove stray | in comment
Neal Norwitz
2006-05-30
1
-1/+1
*
Convert relevant dict internals to Py_ssize_t.
Tim Peters
2006-05-30
1
-43/+55
*
fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying on
Fredrik Lundh
2006-05-29
1
-1/+4
*
Make use of METH_O and METH_NOARGS where possible.
Georg Brandl
2006-05-29
1
-1/+1
*
Correct some value converting strangenesses.
Georg Brandl
2006-05-29
2
-3/+3
*
Fix refleak in socketmodule. Replace bogus Py_BuildValue calls.
Georg Brandl
2006-05-29
1
-0/+1
[next]