summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Update programmer's note on nested functions.Jeremy Hylton2002-04-011-5/+5
* Reword explanation of global statement since an undeclared global is aJeremy Hylton2002-04-011-3/+3
* Note the sole case in which the ban on "from ... import *" within aJeremy Hylton2002-04-011-1/+5
* Remove the following restriction:Jeremy Hylton2002-04-011-4/+0
* Note that it is illegal to delete a cell variable.Jeremy Hylton2002-04-011-2/+6
* Given lambda its own section, instead of burying it in boolean operators.Jeremy Hylton2002-04-011-30/+7
* Update / simplify Identifiers section for nested scopes.Jeremy Hylton2002-04-011-18/+2
* Update docs for nested scopes.Jeremy Hylton2002-04-012-257/+134
* Update to push the docs to python.org instead of python.sf.net.Fred Drake2002-04-012-9/+12
* Fixed errors in two comments.Tim Peters2002-04-011-3/+4
* Copy section on generators from the 2.2 document with a bit of rewritingAndrew M. Kuchling2002-04-011-1/+153
* Restructured my pool-management overview in terms of the threeTim Peters2002-04-011-21/+61
* Mention 2.2.1 in intro and in bug/patch countsAndrew M. Kuchling2002-04-011-8/+11
* Format strings (tuples,) appropriatelyNeal Norwitz2002-04-012-3/+3
* Use attributes appropriatelyNeal Norwitz2002-04-012-2/+2
* There is no TestError, use TestFailed appropriatelyNeal Norwitz2002-04-013-10/+10
* Update documentation of code objects.Jeremy Hylton2002-04-011-10/+15
* Minor adjustments.Fred Drake2002-04-011-1/+2
* Small fixes for description of function attributes.Jeremy Hylton2002-04-011-5/+3
* Reindent. Break long lines. Move comments before the statements.Martin v. Löwis2002-04-011-3482/+3641
* Use the PyModule_Add*() APIs instead of manipulating the module dictFred Drake2002-04-015-283/+280
* Remove all but one use of the module dict.Fred Drake2002-04-011-44/+38
* Remove unused variable and call to PyModule_GetDict().Fred Drake2002-04-011-2/+1
* Switch to using METH_NOARGS where possible.Fred Drake2002-04-011-38/+18
* Remove UNLESS.Martin v. Löwis2002-04-011-152/+152
* New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void).Tim Peters2002-04-012-1/+98
* We expect to skip the new test_mpz on Windows.Tim Peters2002-04-011-1/+5
* Use the PyModule_*() API instead of manipulating the module dictionaryFred Drake2002-04-012-11/+11
* Get rid of another use of PyArg_Parse()Neal Norwitz2002-04-011-2/+2
* Get rid of all METH_OLDARGS & PyArg_Parse.Neal Norwitz2002-04-012-43/+125
* Remove some now-obsolete generator future statements.Tim Peters2002-04-016-19/+5
* Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse.Neal Norwitz2002-04-012-2/+17
* Hopeful fix for SF bug 503031: urllib.py: open_http() host problem.Guido van Rossum2002-03-311-1/+5
* mpz_float() only takes one parameter nowNeal Norwitz2002-03-311-5/+0
* Added a "run with commandline Python" flag. Works in MachoPython, should workJack Jansen2002-03-311-12/+54
* Get rid of warnings due to changing to METH_NOARGSNeal Norwitz2002-03-311-5/+5
* Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored)Neal Norwitz2002-03-311-1/+1
* Convert METH_OLDARGS -> METH_NOARGS: remove args parameterNeal Norwitz2002-03-311-243/+247
* Revert use of METH_OLDARGS (use 0) to support 1.5.2Neal Norwitz2002-03-311-2/+4
* Convert METH_OLDARGS -> METH_VARARGS: also PyArg_Parse -> PyArg_ParseTupleNeal Norwitz2002-03-313-47/+34
* Remove METH_OLDARGS:Neal Norwitz2002-03-3111-164/+85
* Convert from using METH_OLDARGS to METH_NOARGS.Neal Norwitz2002-03-313-85/+44
* Fix whitespaceNeal Norwitz2002-03-311-2/+1
* Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flagsNeal Norwitz2002-03-313-17/+17
* Use symbolic METH_VARARGS instead of 1 for ml_flagsNeal Norwitz2002-03-315-51/+51
* Use docstrings for exception classesNeal Norwitz2002-03-312-2/+4
* Derive exception classes from ExceptionNeal Norwitz2002-03-312-2/+2
* Stop using string exceptionsNeal Norwitz2002-03-312-2/+2
* Add one more assert that indirectly interlocking conditions are consistentTim Peters2002-03-311-0/+1
* Fixed an error in a new assert.Tim Peters2002-03-311-1/+1