- 15 Dec, 1997 15 commits
-
-
Fred Drake authored
-
Fred Drake authored
to the stat module.
-
Fred Drake authored
-
Fred Drake authored
used to add index references for built-in and standard modules, respectively. Modified \bimodindex{} and \stmodindex{} to make the page number bold, to allow the defining instance of a module to stand out in the index. Check-ins which fix improper use of \bimodindex{} and \stmodindex{} will be made as fixes are applied. Misc. indexing updates will occur as a side effect in some cases.
-
Fred Drake authored
used for the defining entry for the module, not every index reference.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
Chris Lawrence <quango@ix.netcom.com>
-
Guido van Rossum authored
-
Guido van Rossum authored
in the pattern to wear out the reference count on small integers.
-
Guido van Rossum authored
-
Guido van Rossum authored
This prevents 4294967296 from being an acceptable way to spell zero!
-
Guido van Rossum authored
Prevent the test from failing there.
-
- 12 Dec, 1997 5 commits
-
-
Fred Drake authored
(HTMLParser method). This makes it more consistent with other modules. All three *mllib modules need this change.
-
Fred Drake authored
(SGMLParser method). This makes it more consistent with other modules. All three *mllib modules need this change.
-
Fred Drake authored
This makes it more consistent with other modules. All three *mllib modules need this change.
-
cvs2svn authored
-
Guido van Rossum authored
-
- 11 Dec, 1997 18 commits
-
-
Fred Drake authored
index to cross-references; an image doesn't benefit by being bold!
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Barry Warsaw authored
explain what the users of the various Emacsen have to do to get this all working.
-
Guido van Rossum authored
the option name (prepend '-', strip trailing '_').
-
Guido van Rossum authored
gdbm and bsddb, as suggested by Skip Montanaro.
-
Guido van Rossum authored
-
Guido van Rossum authored
Use Program Files, register pythonw.exe to execute .pyw files.
-
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
bind_class() and bind_all() are destroyed when the widget to which they were passed is destroyed.
-
- 10 Dec, 1997 2 commits
-
-
Guido van Rossum authored
The attached patch adds the following behavior to the handling of REDUCE codes: - A user-defined type may have a __reduce__ method that returns a string rather than a tuple, in which case the object is saved as a global object with a name given by the string returned by reduce. This was a feature added to cPickle a long time ago. - User-defined types can now support unpickling without executing a constructor. The second value returned from '__reduce__' can now be None, rather than an argument tuple. On unpickling, if the second value returned from '__reduce__' during pickling was None, then rather than calling the first value returned from '__reduce__', directly, the '__basicnew__' method of the first value returned from '__reduce__' is called without arguments. I also got rid of a few of Chris' extra ()s, which he used to make python ifs look like C ifs.
-
Guido van Rossum authored
-