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
/
object.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
#2630: Implement PEP 3138.
Georg Brandl
2008-06-11
1
-0/+27
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-6/+6
*
Renamed PyBytes to PyByteArray
Christian Heimes
2008-05-26
1
-1/+1
*
Merged revisions 60245-60277 via svnmerge from
Christian Heimes
2008-01-25
1
-0/+5
*
Merged revisions 59921-59932 via svnmerge from
Christian Heimes
2008-01-12
1
-0/+4
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes
2007-12-19
1
-23/+23
*
Partial fix for bug #1306
Christian Heimes
2007-11-30
1
-1/+8
*
Found another memory leak in longrangeiter. And redo the previous correction
Amaury Forgeot d'Arc
2007-11-15
1
-3/+0
*
Correct a memory leak: the range() object was not properly freed.
Amaury Forgeot d'Arc
2007-11-15
1
-0/+3
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-131/+37
*
Merged revisions 58221-58741 via svnmerge from
Guido van Rossum
2007-11-01
1
-0/+5
*
Patch 1352 (continued in issue 1329) by Christian Heimes.
Guido van Rossum
2007-10-30
1
-0/+3
*
Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from
Thomas Wouters
2007-09-19
1
-0/+4
*
Use unicode and remove support for some uses of str8.
Neal Norwitz
2007-08-26
1
-13/+7
*
Oops. The PyObject_Print() function was totally broken; the original code
Guido van Rossum
2007-08-09
1
-3/+19
*
Kill all uses and definitions of tp_print under Objects/. (Others will follow.)
Guido van Rossum
2007-08-07
1
-3/+1
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-34/+34
*
Remove unused local variable.
Thomas Heller
2007-07-11
1
-1/+0
*
Make test_descr.py pass. Had to disable a few tests, remove references
Guido van Rossum
2007-07-11
1
-5/+5
*
Simplify error formatting.
Walter Dörwald
2007-06-11
1
-10/+10
*
Make identifiers str (not str8) objects throughout.
Martin v. Löwis
2007-06-10
1
-76/+32
*
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald
2007-05-18
1
-15/+35
*
Simplify PyObject_Unicode(NULL) by using
Walter Dörwald
2007-05-11
1
-8/+3
*
It's ok for __repr__ to return unicode.
Guido van Rossum
2007-05-04
1
-9/+2
*
More coding by random modification.
Guido van Rossum
2007-05-04
1
-5/+6
*
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum
2007-05-03
1
-18/+0
*
Rough and dirty job -- allow concatenation of bytes and arbitrary
Guido van Rossum
2007-04-13
1
-2/+1
*
Check the keys of the locals dict -- they need not be a list.
Georg Brandl
2007-03-12
1
-1/+12
*
Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir.
Georg Brandl
2007-03-10
1
-126/+144
*
Merged revisions 53451-53537 via svnmerge from
Thomas Wouters
2007-02-01
1
-1/+1
*
The opstrings table was backwards. Add an XXX comment.
Guido van Rossum
2006-12-19
1
-1/+2
*
- patch #1600346 submitted by Tomer Filiba
Jack Diederich
2006-11-28
1
-2/+2
*
Get rid of more coerce cruft (really check in this time :-)
Neal Norwitz
2006-08-29
1
-27/+0
*
Get rid of most of the remaining uses of <>. There's still Tools/* thogh.
Neal Norwitz
2006-08-29
1
-1/+1
*
Restructure comparison dramatically. There is no longer a default
Guido van Rossum
2006-08-24
1
-375/+177
*
Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden
Guido van Rossum
2006-08-21
1
-1/+8
*
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters
2006-08-21
1
-17/+0
*
Get rid of most of the rest of coerce (slot is still there for now).
Neal Norwitz
2006-08-21
1
-19/+1
*
Completely get rid of PyClass and PyInstance.
Guido van Rossum
2006-08-17
1
-39/+11
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-12/+18
*
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum
2006-07-27
1
-16/+3
*
Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn
Thomas Wouters
2006-06-08
1
-1/+1
*
Here is a bytes type. It's very minimal but it's a start.
Guido van Rossum
2006-04-22
1
-0/+3
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-23/+71
*
Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and
Neal Norwitz
2006-03-14
1
-5/+7
*
Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact
Georg Brandl
2006-03-13
1
-2/+2
*
Change int to Py_ssize_t in several places.
Martin v. Löwis
2006-03-07
1
-2/+2
*
Oops, forgot to include this in the last checkin.
Neal Norwitz
2006-03-04
1
-1/+1
*
Use %ld and casts to long for refcount printing, in absense of a universally
Thomas Wouters
2006-03-01
1
-8/+18
*
Revert backwards-incompatible const changes.
Martin v. Löwis
2006-02-27
1
-2/+2
[next]