- 24 Nov, 1997 8 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
from the main program to shared libraries. On mklinux, the old '-rdynamic' doesn't work; the new '-Xlinker -export-dynamic' works both there and on Intel Linux platforms.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 22 Nov, 1997 12 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
Sjoerd Mullender's parseaddr()
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 21 Nov, 1997 2 commits
-
-
Guido van Rossum authored
the writing of filters. Typical use is: import fileinput for line in fileinput.input(): process(line) This iterates over the lines of all files listed in sys.argv[1:], defaulting to sys.stdin if the list is empty or when a filename is '-'. There is also an option to use this to direct the output back to the input files.
-
Guido van Rossum authored
-
- 20 Nov, 1997 11 commits
-
-
Barry Warsaw authored
called!
-
Guido van Rossum authored
Handbook of Object Technology.
-
Guido van Rossum authored
-
Guido van Rossum authored
section was last revised...
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Barry Warsaw authored
class from the standard base exception Exception. Otherwise define Queue.Empty as a string exception. (Queue): 8-space to 4-space indentation conversion. Also, basically recast all method comments into docstrings.
-
Barry Warsaw authored
Makefile: Add dependency on libqueue.tex lib.tex: Place the libqueue.tex documentation just after libthread.tex since Queue depends on thread support in Python.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Barry Warsaw authored
interface when repl is a function. Also give a simple example of using a function repl.
-
- 19 Nov, 1997 7 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
format(), str(), atof(), and atoi(). The last three are locale sensitive versions of the corresponding standard functions (only for numbers though); format() does general %[efg] formatting taking the locale into account, optionally with thousands grouping.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
This is a bit of a hack: when the shared library is loaded, the module name is "package.module", but the module calls Py_InitModule*() with just "module" for the name. The shared library loader squirrels away the true name of the module in _Py_PackageContext, and Py_InitModule*() will substitute this (if the name actually matches).
-
Guido van Rossum authored
of shared libraries from inside packages.
-