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
/
typeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
ready types returned from PyType_FromSpec
Benjamin Peterson
2012-01-30
1
-0/+3
*
adjust declaration
Benjamin Peterson
2012-01-30
1
-1/+2
*
Fix the fix for issue #12149: it was incorrect, although it had the side
Antoine Pitrou
2011-12-15
1
-8/+10
*
Issue #13161: fix doc strings of __i*__ operators
Eli Bendersky
2011-11-11
1
-10/+10
*
Issue 1294232: Fix errors in metaclass calculation affecting some cases of me...
Nick Coghlan
2011-10-23
1
-20/+41
*
fix possible refleaks
Benjamin Peterson
2011-08-17
1
-1/+3
*
Issue #11603: Fix a crash when __str__ is rebound as __repr__.
Antoine Pitrou
2011-07-15
1
-1/+1
|
\
|
*
Issue #11603: Fix a crash when __str__ is rebound as __repr__.
Antoine Pitrou
2011-07-15
1
-1/+1
*
|
Issue #12149: Update the method cache after a type's dictionnary gets
Antoine Pitrou
2011-07-12
1
-0/+2
*
|
merge 3.1
Benjamin Peterson
2011-05-24
1
-3/+3
|
\
\
|
|
/
|
*
use '->' to indicate return values
Benjamin Peterson
2011-05-24
1
-3/+3
*
|
#11565: Merge with 3.1.
Ezio Melotti
2011-03-16
1
-2/+2
|
\
\
|
|
/
|
*
#11565: Fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-16
1
-2/+2
|
*
Merged revisions 88069 via svnmerge from
Benjamin Peterson
2011-01-17
1
-1/+0
|
*
Merged revisions 88066 via svnmerge from
Benjamin Peterson
2011-01-17
1
-1/+1
|
*
Merged revisions 88063 via svnmerge from
Benjamin Peterson
2011-01-17
1
-4/+2
|
*
Merged revisions 87960 via svnmerge from
Benjamin Peterson
2011-01-12
1
-2/+2
|
*
Merged revisions 87952-87954 via svnmerge from
Benjamin Peterson
2011-01-12
1
-2/+11
|
*
Merged revisions 85193 via svnmerge from
Benjamin Peterson
2010-10-03
1
-2/+2
|
*
Merged revisions 85154,85182 via svnmerge from
Benjamin Peterson
2010-10-02
1
-2/+5
|
*
Merged revisions 84984 via svnmerge from
Mark Dickinson
2010-09-23
1
-4/+0
|
*
Merged revisions 84320 via svnmerge from
Benjamin Peterson
2010-08-25
1
-2/+2
|
*
Merged revisions 84106 via svnmerge from
Alexander Belopolsky
2010-08-16
1
-2/+2
|
*
Recorded merge of revisions 81032 via svnmerge from
Antoine Pitrou
2010-05-09
1
-4779/+4779
|
*
Merged revisions 78875 via svnmerge from
Victor Stinner
2010-03-21
1
-4/+9
|
*
Merged revisions 73868 via svnmerge from
Amaury Forgeot d'Arc
2009-07-07
1
-4/+2
*
|
Merged revisions 88456 via svnmerge from
Martin v. Löwis
2011-02-21
1
-0/+2
*
|
#11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to a...
Georg Brandl
2011-02-19
1
-0/+11
*
|
Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check
Martin v. Löwis
2011-02-05
1
-0/+6
*
|
remove unneeded assertion
Benjamin Peterson
2011-01-17
1
-1/+0
*
|
correct assertion
Benjamin Peterson
2011-01-17
1
-1/+1
*
|
turn some checks into assertions, since they are implied by the caller
Benjamin Peterson
2011-01-17
1
-4/+2
*
|
use PyErr_SetString instead of PyErr_Format
Benjamin Peterson
2011-01-12
1
-2/+2
*
|
don't segfault on deleting __abstractmethods__ #10892
Benjamin Peterson
2011-01-12
1
-2/+11
*
|
Issue #9566: use Py_ssize_t instead of int
Victor Stinner
2011-01-04
1
-3/+3
*
|
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-0/+38
*
|
follow up to #9778: define and use an unsigned hash type
Benjamin Peterson
2010-10-23
1
-2/+2
*
|
Revert r85797 (and r85798): it broke the Windows buildbots because of
Antoine Pitrou
2010-10-22
1
-48/+30
*
|
Issue #9935: Speed up pickling of instances of user-defined classes.
Antoine Pitrou
2010-10-22
1
-30/+48
*
|
-1 is reserved for errors
Benjamin Peterson
2010-10-17
1
-0/+3
*
|
make hashes always the size of pointers; introduce Py_hash_t #9778
Benjamin Peterson
2010-10-17
1
-13/+12
*
|
typo
Benjamin Peterson
2010-10-03
1
-2/+2
*
|
type.__abstractmethods__ should raise an AttributeError #10006
Benjamin Peterson
2010-10-02
1
-2/+5
*
|
Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r;
Mark Dickinson
2010-09-23
1
-4/+0
*
|
Issue 7994: Make object.__format__() raise a PendingDeprecationWarning
Eric Smith
2010-09-13
1
-3/+20
*
|
basicsize and itemsize are Py_ssize_t #9688
Benjamin Peterson
2010-08-25
1
-2/+2
*
|
Issue #8983: Corrected docstrings.
Alexander Belopolsky
2010-08-16
1
-2/+2
*
|
Issue #9425: Create PyErr_WarnFormat() function
Victor Stinner
2010-08-13
1
-7/+4
*
|
revert unintended changes
Benjamin Peterson
2010-07-20
1
-1/+0
*
|
move test_trace.py so as not to conflict with future tests for the trace module
Benjamin Peterson
2010-07-20
1
-0/+1
[next]