summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/combinerefs.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix a last use of file() that should be open().Guido van Rossum2007-12-061-1/+2
|
* Convert print statements to function calls in Tools/.Collin Winter2007-08-031-7/+7
|
* Docstring clarifications.Tim Peters2003-04-191-7/+12
|
* Don't double-space the "??? new object ..." messages.Guido van Rossum2003-04-181-1/+1
|
* Heh -- I checked in an old version of this, at a time I documented theTim Peters2003-04-181-3/+1
| | | | internal read() as being a generator but hadn't yet changed it into one.
* _Py_PrintReferenceAddresses(): also print the type name. In real useTim Peters2003-04-181-0/+124
I'm finding some pretty baffling output, like reprs consisting entirely of three left parens. At least this will let us know what type the object is (it's not str -- there's no quote character in the repr). New tool combinerefs.py, to combine the two output blocks produced via PYTHONDUMPREFS.