summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Add Listbox.itemconfig[ure] call. (A "recent" addition to Tk -- 8.0Guido van Rossum2001-09-011-5/+26
* Added the "Host" header to the "GET" example.Fred Drake2001-09-011-0/+1
* Add various and sundry news items -- most mine, one Barry's, oneGuido van Rossum2001-08-311-0/+44
* Oops. The -W option takes args, not -X.Guido van Rossum2001-08-311-1/+1
* Allow for the possibility that globals['__name__'] does not exist;Guido van Rossum2001-08-311-1/+4
* Add warning mode for classic division, almost exactly as specified inGuido van Rossum2001-08-319-25/+146
* Fix a memory leak in str_subtype_new(). (All the otherGuido van Rossum2001-08-311-3/+3
* Correct name mangling algorithm, and add a comment.Guido van Rossum2001-08-311-2/+1
* Give 'super' a decent repr(), and readonly attributes to access theGuido van Rossum2001-08-301-11/+36
* Added all the new files in the right packages and file groups (I think, untes...Jack Jansen2001-08-301-0/+0
* SF bug #456621: normpath on Win32 not collapsing c:\\..Tim Peters2001-08-302-8/+35
* Add Jack Jansen's explanation of the MacOS X changesAndrew M. Kuchling2001-08-301-7/+43
* Superseded by the (generated) xx.mcp.Jack Jansen2001-08-301-0/+0
* Case mismatch in "import Types". Apparently nobody has looked at this for a l...Jack Jansen2001-08-301-2/+2
* We should look in the directory containing the module, not in the module itse...Jack Jansen2001-08-301-1/+1
* Group some projects into "Done" and "To do". Get rid of Tim's mergeGuido van Rossum2001-08-301-213/+46
* metaclass(): add some more examples of metaclasses, including oneGuido van Rossum2001-08-301-0/+104
* SF patch #455966: Allow leading 0 in float/imag literals.Tim Peters2001-08-305-15/+84
* PyObject_Repr(): add missing ">" back at end of format string: "<%sGuido van Rossum2001-08-301-1/+1
* Fix _convert_NAME() so that it doesn't store locals for class bodies.Jeremy Hylton2001-08-306-30/+30
* Squash new compiler wng.Tim Peters2001-08-301-1/+1
* Add testcases for inheritance from tricky builtins (numbers, strings,Guido van Rossum2001-08-301-0/+74
* Pytype_GenericAlloc(): round up size so we zap all four bytes of theGuido van Rossum2001-08-301-16/+51
* Revert the previous patch to test_pow.py and move the test to test_unary.pyFred Drake2001-08-302-10/+8
* Added a regression test for the negation-of-exponentiation optimizationFred Drake2001-08-301-0/+11
* When re-writing a factor containing a unary negation of a literal, onlyFred Drake2001-08-301-0/+3
* More stuff discovered while writing the simplest of testcases:Guido van Rossum2001-08-301-2/+5
* Do the int inlining only if the type is really an int, not wheneverGuido van Rossum2001-08-301-6/+9
* Ah, the joy of writing test cases...Guido van Rossum2001-08-301-1/+1
* spurious popJeremy Hylton2001-08-302-2/+0
* Add news about GC API change. Explain how to upgrade extension modules.Neil Schemenauer2001-08-301-3/+16
* Update documentation for GC API. Closes SF patch #421893.Neil Schemenauer2001-08-301-29/+48
* win_getpass(): if sys.stdin is not sys.__stdin__, useGuido van Rossum2001-08-301-0/+2
* fix for part of bug #453523: disable unmarshalling of code objects inMichael W. Hudson2001-08-301-1/+7
* Update the links to the FIPS document that defines the Secure HashFred Drake2001-08-301-8/+9
* Removed unreachable return to silence SGI compiler.Sjoerd Mullender2001-08-301-2/+1
* Removed an unreachable break statement to silence SGI compiler.Sjoerd Mullender2001-08-301-1/+1
* Removed unreachable goto statement to silence SGI compiler.Sjoerd Mullender2001-08-301-1/+0
* Removed some unreachable break statements to silence SGI compiler.Sjoerd Mullender2001-08-301-3/+0
* Removed some unreachable break statements to silence SGI compiler.Sjoerd Mullender2001-08-301-3/+0
* Started on the 2.2a2 installerJack Jansen2001-08-301-0/+0
* Give the internal immutable list type .extend and .pop methods (theyTim Peters2001-08-301-0/+2
* Add a new function imp.lock_held(), and use it to skip test_threaded_importTim Peters2001-08-304-4/+47
* Safety measures now that str and tuple are subclassable:Guido van Rossum2001-08-301-1/+9
* Make 'super' subclassable. (Not sure how useful this is yet. :-)Guido van Rossum2001-08-301-1/+1
* Make unicode subclassable.Guido van Rossum2001-08-301-2/+32
* Make str and tuple types subclassable.Guido van Rossum2001-08-302-4/+54
* Make getset subclassable.Guido van Rossum2001-08-301-1/+1
* Fix typo: double semicolons.Guido van Rossum2001-08-302-2/+2
* Make the Py<type>_Check() macro use PyObject_TypeCheck().Guido van Rossum2001-08-303-3/+3