- 09 Oct, 2001 5 commits
-
-
Guido van Rossum authored
without the Py_TPFLAGS_CHECKTYPES flag) in the wrappers. This required a few changes in test_descr.py to cope with the fact that the complex type has __int__, __long__ and __float__ methods that always raise an exception.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Tim Peters authored
actual run of the profiler, instead of timing a simplified simulation of part of what the profiler does. It computes a constant about 60% higher on my Win98SE box than the old method, and the new constant appears much more realistic. Deleted the undocumented simple(), instrumented(), and profiler_simulation() methods (which existed only to support the previous calibration method).
-
- 08 Oct, 2001 16 commits
-
-
Guido van Rossum authored
-
Jeremy Hylton authored
The strerror attribute contained only partial information about the exception and produced some very confusing error messages. By passing err (the exception object itself) and letting it convert itself to a string, the error messages are better.
-
Fred Drake authored
SF patch #467580.
-
Tim Peters authored
-
Guido van Rossum authored
this type of test fails, vereq() does a better job of reporting than verify(). Change vereq(x, y) to use "not x == y" rather than "x != y" -- it makes a difference is some overloading tests.
-
Fred Drake authored
SF patch #467580.
-
Jack Jansen authored
Mods by Alexandre Parenteau to allow embedding programs to disable the MacPython console window completely, and optionally route console output (and input) to routines provided by the embedding app. Things don't fully work yet, but at least it doesn't break anything.
-
Jack Jansen authored
-
Guido van Rossum authored
is a list of weak references to types (new-style classes). Make this accessible to Python as the function __subclasses__ which returns a list of types -- we don't want Python programmers to be able to manipulate the raw list. In order to make this possible, I also had to add weak reference support to type objects. This will eventually be used together with a trap on attribute assignment for dynamic classes for a major speed-up without losing the dynamic properties of types: when a __foo__ method is added to a class, the class and all its subclasses will get an appropriate tp_foo slot function.
-
Jack Jansen authored
the configure option is really called --disable-toolbox-glue.
-
Martin v. Löwis authored
in LDSHARED.
-
Martin v. Löwis authored
Contributed by Albert Chin in discussion of bug #210665.
-
Jack Jansen authored
and PyMac_DummyWriteHandler.
-
Jack Jansen authored
-
Tim Peters authored
-
Tim Peters authored
Most of this code was old enough to vote. Examples of cleanups: + Backslashes were used for line continuation even inside unclosed bracket structures, from back in the days that was still needed. + There was no use of % formats, and e.g. the old fpformat module was still used to format floats "by hand" in conjunction with rjust(). + There was even use of a do-nothing .ignore() method to tack on to the end of a chain of method calls, else way back when Python would print the non-None result (as it does now in an interactive session -- it *used* to do that in batch mode too). + Perhaps controversial (although I can't imagine why for real <wink>), used augmented assignment where helpful. Stuff like self.total_calls = self.total_calls + other.total_calls is just plain harder to follow than self.total_calls += other.total_calls
-
- 07 Oct, 2001 13 commits
-
-
Guido van Rossum authored
not other sequences (then we'd have to except strings, and we'd still be susceptible to recursive attacks).
-
Steven M. Gava authored
-
Steven M. Gava authored
-
Steven M. Gava authored
-
Martin v. Löwis authored
-
Tim Peters authored
-
Martin v. Löwis authored
-
Tim Peters authored
seriously wrong. This started out by just fixing the docs, but then it occurred to me that the doc confusion propagated into misleading vrbl names too, so I also renamed those to match reality. As a result, INO the time computations are much easier to understand now (within the limitations of vast quantities of 3-character names <wink>).
-
Martin v. Löwis authored
-
Tim Peters authored
to use assert stmts (was raising unexpected kinds of exceptions).
-
Tim Peters authored
+ The last index in the timing tuple is 4, not 5 (noted by Guido). + The poorly named trace_dispatch_i works with float return values too.
-
Tim Peters authored
This simplifies the rounding in _PyObject_VAR_SIZE, allows to restore the pre-rounding calling sequence, and allows some nice little simplifications in its callers. I'm still making it return a size_t, though.
-
Tim Peters authored
hasn't worked in years, docs were wrong, and they aren't interesting anymore regardless.
-
- 06 Oct, 2001 5 commits
-
-
Tim Peters authored
As Guido suggested, this makes the new subclassing code substantially simpler. But the mechanics of doing it w/ C macro semantics are a mess, and _PyObject_VAR_SIZE has a new calling sequence now. Question: The PyObject_NEW_VAR macro appears to be part of the public API. Regardless of what it expands to, the notion that it has to round up the memory it allocates is new, and extensions containing the old PyObject_NEW_VAR macro expansion (which was embedded in the PyObject_NEW_VAR expansion) won't do this rounding. But the rounding isn't actually *needed* except for new-style instances with dict pointers after a variable-length blob of embedded data. So my guess is that we do not need to bump the API version for this (as the rounding isn't needed for anything an extension can do unless it's recompiled anyway). What's your guess?
-
Tim Peters authored
pad memory to properly align the __dict__ pointer in all cases. gcmodule.c/objimpl.h, _PyObject_GC_Malloc: + Added a "padding" argument so that this flavor of malloc can allocate enough bytes for alignment padding (it can't know this is needed, but its callers do). typeobject.c, PyType_GenericAlloc: + Allocated enough bytes to align the __dict__ pointer. + Sped and simplified the round-up-to-PTRSIZE logic. + Added blank lines so I could parse the if/else blocks <0.7 wink>.
-
Tim Peters authored
+ Use the _PyObject_VAR_SIZE macro to compute object size. + Break the computation into lines convenient for debugger inspection. + Speed the round-up-to-pointer-size computation.
-
Tim Peters authored
no way to talk the debugger into showing me how many bytes were being allocated.
-
Fred Drake authored
-
- 05 Oct, 2001 1 commit
-
-
Tim Peters authored
derive Profile subclasses. This patch repairs that, restoring negative tuple indices. Yuck? You bet.
-