summaryrefslogtreecommitdiffstats
path: root/Lib/codeop.py
Commit message (Collapse)AuthorAgeFilesLines
* A fiddled version of the rest of Michael Hudson's SF patchTim Peters2001-08-171-36/+122
| | | | | #449043 supporting __future__ in simulated shells which implements PEP 264.
* Remove useless imports, as reported by PyChecker.Tim Peters2001-04-081-3/+0
|
* String method conversion.Eric S. Raymond2001-02-091-3/+2
|
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+2
| | | | | | | | added test script and expected output file as well this closes patch 103297. __all__ attributes will be added to other modules without first submitting a patch, just adding the necessary line to the test script to verify more-or-less correct implementation.
* Moved compile_command() here from code.py, so JPython can provide itsGuido van Rossum1998-10-221-0/+86
own version.