- 06 Jan, 2003 17 commits
-
-
Neal Norwitz authored
-
Fred Drake authored
vile abomination and should be eradicated!
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Fred Drake authored
- give subsection pages nicer names - shorten some really long table cells; table cells can't wrap in the typeset version of the documentation
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Fred Drake authored
-
Raymond Hettinger authored
Document constants for permission bits.
-
Andrew M. Kuchling authored
(Power Macintosh -> Power_Macintosh)
-
Raymond Hettinger authored
-
Jason Tishler authored
The attached patch enables shared extension modules to build cleanly under Cygwin without moving the static initialization of certain function pointers (i.e., ones exported from the Python DLL core) to a module initialization function. Additionally, this patch fixes the modules that have been changed in the past to accommodate Cygwin.
-
Raymond Hettinger authored
-
Just van Rossum authored
-
Raymond Hettinger authored
Christian Tismer pointed out the high cost of the loop overhead and function call overhead for 'c' * n where n is large. Accordingly, the new code only makes lg2(n) loops. Interestingly, 'c' * 1000 * 1000 ran a bit faster with old code. At some point, the loop and function call overhead became cheaper than invalidating the cache with lengthy memcpys. But for more typical sizes of n, the new code runs much faster and for larger values of n it runs only a bit slower.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
- 05 Jan, 2003 7 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Just van Rossum authored
- improved readability of rmtree; removed silly apply()
-
Neal Norwitz authored
Adding try/except allows the test to pass
-
Raymond Hettinger authored
-
Tim Peters authored
-
Raymond Hettinger authored
-
- 04 Jan, 2003 16 commits
-
-
Greg Ward authored
-
Just van Rossum authored
-
Tim Peters authored
localtime()/gmtime() insists on delivering them, + associated doc changes. Redid the docs for datetimtez.astimezone().
-
Just van Rossum authored
-
Guido van Rossum authored
(backport candidate?)
-
Raymond Hettinger authored
The range of u=random() is [0,1), so log(u) and 1/x can fail. Fix by setting u=1-random() or by reselecting for a usable value. Will backport.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
Check whether self is NULL in mainloop.
-
Tim Peters authored
cases, plus even tougher tests of that. This implementation follows the correctness proof very closely, and should also be quicker (yes, I wrote the proof before the code, and the code proves the proof <wink>).
-
Raymond Hettinger authored
-
Raymond Hettinger authored
It was once available so that faster generators could be substituted. Now, that is less necessary and preferrably done via subclassing. Also, clarified and shortened the comments for sample().
-
Skip Montanaro authored
platform-specific verbiage lives.
-
Skip Montanaro authored
supported version.
-
Skip Montanaro authored
bsddb module build note to reflect the inclusion of bsddb3 and the demotion of the old bsddb module.
-
Raymond Hettinger authored
Clarify the operation of locals().
-
Raymond Hettinger authored
Minor fixes to markup, spelling, parameter names, and abbreviations.
-