- 09 Haz, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
case of objects with equal types which support tp_compare. Give type objects a tp_compare function. Also add c<0 tests before a few PyErr_Occurred tests.
-
- 08 Haz, 2001 7 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
need to understand about the binary & decimal fp, so that representation weirdness is documented somewhere. This makes it easier to repond to "bug" reports caused by user confusion & ignorance of the issues. This closes SF patch #426208.
-
Skip Montanaro yazdı
module is __main__ and once when module is imported.
-
Fred Drake yazdı
about setting up the dispatch table, and update the OldProfile and HotProfile classes to the current implementations, showing the adjusted construction for the dispatch table.
-
Fred Drake yazdı
that should be used to cache an interned version of the event string passed to the profile/trace function. call_trace() will create interned strings and cache them in using the storage specified by this additional parameter, avoiding a lot of string object creation at runtime when using the profiling or tracing functions. All call sites are modified to pass the additional parameter, and four static PyObject* variables are allocated to cache the interned string objects. This closes SF patch #431257.
-
Fred Drake yazdı
Ensure that all the default timers are called as functions, not an expensive method wrapper around a variety of different functions. Agressively avoid dictionary lookups. Modify the dispatch scheme (Profile.trace_dispatch_*(), where * is not 'call', 'exception' or 'return') so that the callables dispatched to are simple functions and not bound methods -- this reduces the number of layers of Python call machinery that gets touched. Remove a couple of duplicate imports from the "if __name__ == ..." section. This closes SF patch #430948.
-
- 07 Haz, 2001 8 kayıt (commit)
-
-
Martin v. Löwis yazdı
with the addition of the euro character. Also added a few EDBDIC aliases.
-
Martin v. Löwis yazdı
-
Peter Schneider-Kamp yazdı
use faster code for base64.encodestring (courtesy of Mr. Tim Peters) and for base64.decodestring (courtesy of Anthony Baxter)
-
Martin v. Löwis yazdı
-
Marc-André Lemburg yazdı
-
Martin v. Löwis yazdı
-
Peter Schneider-Kamp yazdı
-
Martin v. Löwis yazdı
-
- 06 Haz, 2001 6 kayıt (commit)
-
-
Guido van Rossum yazdı
Makefile and used by the setup.py script. Ignore it in .cvsignore; remove it in "make clobber".
-
Fred Drake yazdı
Add reference to the documentation for the Python documentation markup. Fixed up a couple of descriptions. This closes SF bug #430627.
-
Fred Drake yazdı
Suggested by the comments in SF bug #430627.
-
Guido van Rossum yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 05 Haz, 2001 5 kayıt (commit)
-
-
Martin v. Löwis yazdı
Also protect against multiple inclusion.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Tim Peters yazdı
(Just a change to a comment)
-
Fred Drake yazdı
the availability of nested scoping in Python 2.1 and 2.2.
-
- 04 Haz, 2001 5 kayıt (commit)
-
-
Guido van Rossum yazdı
config.txt). *** This is a bugfix-release candidate (for 2.1.1 and 2.0.1)! ***
-
Tim Peters yazdı
frequently used, and in particular this allows to drop the last remaining obvious time-waster in the crucial lookdict() and lookdict_string() functions. Other changes consist mostly of changing "i < ma_size" to "i <= ma_mask" everywhere.
-
Skip Montanaro yazdı
-
Fred Drake yazdı
-
Mark Hammond yazdı
-
- 03 Haz, 2001 5 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
- actually return a result - Compare with tag.localName in getElementsByTagNameNSHelper
-
Tim Peters yazdı
be possible to provoke unbounded recursion now, but leaving that to someone else to provoke and repair. Bugfix candidate -- although this is getting harder to backstitch, and the cases it's protecting against are mondo contrived.
-
Tim Peters yazdı
This code is likely to get even hairier to squash core dumps due to mutating comparisons, and it's hard enough to follow without that.
-
Fred Drake yazdı
In particular, the affect on existing list content was not sufficiently explained. This closes SF bug #429554.
-
- 02 Haz, 2001 3 kayıt (commit)
-
-
Tim Peters yazdı
Bugfix candidate.
-
Tim Peters yazdı
-
Tim Peters yazdı
converting to string. Critical bugfix candidate -- if you take this seriously <wink>.
-