summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Change test_overflow to test_no_overflow; looks like big int literalsTim Peters2001-08-271-4/+5
* Use the new macresource module to open the accompanying resource file (if nee...Jack Jansen2001-08-2713-102/+37
* need() now returns the refno of the resource file opened, or None if theJack Jansen2001-08-271-4/+7
* Module to help other modules locate their resources. It currently knows aboutJack Jansen2001-08-271-0/+68
* These have long outlived there usefulness, in my opinion. Moved to Unsupported.Jack Jansen2001-08-275-0/+0
* Fix for sibling nodes that define the same free variableJeremy Hylton2001-08-272-12/+20
* Add lookup_name() to optimize use of stack framesJeremy Hylton2001-08-272-10/+42
* Two changes to visitor API:Jeremy Hylton2001-08-272-40/+46
* Why didn't I think of Fred off the top of my head?Jeremy Hylton2001-08-271-0/+1
* Add everyone I can think of off the top of my headJeremy Hylton2001-08-271-0/+7
* Revise regrtest to compile entire standard library.Jeremy Hylton2001-08-271-9/+28
* Add -c option to continue if one file has a SyntaxErrorJeremy Hylton2001-08-271-2/+15
* Add content-type header to ftp URLs (SF patch #454553)Jeremy Hylton2001-08-273-14/+27
* Docs for the PEP 264 changes.Michael W. Hudson2001-08-274-22/+112
* If an integer constant can't be generated from an integer literalJeremy Hylton2001-08-271-5/+2
* SF bug [#455775] float parsing discrepancy.Tim Peters2001-08-272-5/+23
* Added Dean Draayer to the thank you list.Jack Jansen2001-08-271-2/+2
* Patch by Dean Draayer: support for indeterminate progress bars. YouJack Jansen2001-08-271-27/+37
* Patch by Bill Noon: added 'dylib' as a library type along withJack Jansen2001-08-272-4/+9
* Fixes by Thomas Heller:Jack Jansen2001-08-275-12/+13
* Refer to the toolbox modules by their official name (Carbon.AE), not the inte...Jack Jansen2001-08-271-59/+59
* When we're freezing to sourcecode and one of the modules is a dynamic module ...Jack Jansen2001-08-271-0/+4
* Updated to the current state of affairs.Jack Jansen2001-08-272-0/+0
* Added targets for building the Carbon and Classic interpreter if you don't wa...Jack Jansen2001-08-271-0/+0
* - A forgotten "from Carbon".Jack Jansen2001-08-271-2/+3
* A few forgotten "from Carbon"s.Jack Jansen2001-08-272-2/+2
* SF patch [ #455137 ] Makes popen work with COMMAND.COM on WNT, fromTim Peters2001-08-273-9/+26
* Two improvements suggested by Greg Stein:Barry Warsaw2001-08-271-2/+5
* Import the MacOS toolbox modules from the Carbon package.Jack Jansen2001-08-25100-331/+336
* Step 2 in putting the MacOS toolbox modules in a package: issue a Depracation...Jack Jansen2001-08-2545-0/+135
* PyString_FromFormatV: Massage platform %p output to match what gcc does,Tim Peters2001-08-251-0/+8
* Undo previous checkin -- Barry fixed it better.Guido van Rossum2001-08-241-2/+0
* Update test output to match new (more informative) error message aboutGuido van Rossum2001-08-241-2/+2
* Quick and dirty fix for test_extcall failures trigged by Guido'sBarry Warsaw2001-08-242-4/+8
* Remove the local 'getset' class -- this is now a built-in type withGuido van Rossum2001-08-241-18/+0
* getset_init(): the function name in the PyArg_ParseTuple() formatGuido van Rossum2001-08-241-1/+1
* Improve the error message issued when an unbound method is called withGuido van Rossum2001-08-241-3/+49
* Rip the import repr truncation test out of here and put it in test_repr.pyBarry Warsaw2001-08-241-35/+0
* Added lots of tests for reprs of "simple" objects, such as file,Barry Warsaw2001-08-241-0/+156
* PyErr_Format(): Factor out most of this code intoBarry Warsaw2001-08-241-114/+1
* repr's converted to using PyString_FromFormat() instead of sprintf'ingBarry Warsaw2001-08-2411-136/+95
* PyString_FromFormat() and PyString_FromFormatV(): Largely ripped fromBarry Warsaw2001-08-242-0/+159
* Repair repr of future-features (wasn't updated to include the newTim Peters2001-08-241-2/+3
* supers(): typo -- "if verify" should be "if verbose".Guido van Rossum2001-08-241-1/+1
* Add test suite for super().Guido van Rossum2001-08-241-0/+32
* Add 'super' builtin type.Guido van Rossum2001-08-241-0/+3
* Add decl of PySuper_Type; fixup comments for the two other types.Guido van Rossum2001-08-241-2/+3
* Add 'super', another new object type with magical properties.Guido van Rossum2001-08-241-0/+155
* Add a test for the new getset type.Guido van Rossum2001-08-241-0/+24
* Change the getset type to take an optional third function argument:Guido van Rossum2001-08-241-9/+21