- 30 Ock, 1997 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 29 Ock, 1997 5 kayıt (commit)
-
-
Guido van Rossum yazdı
any more? This was because the *parent* process in test_socket.py did an os._exit(0)! Getting rid of that now...
-
Guido van Rossum yazdı
- remove bogus initialization using uninitialized i - derive initial incr from hash - copy mp->ma_table into a local variable
-
Barry Warsaw yazdı
argument, not hardwired to a dictionary.
-
Guido van Rossum yazdı
in front of the 0x, like such: "0000x1".
-
Guido van Rossum yazdı
Reindented the whole table.
-
- 28 Ock, 1997 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
argument to the linker (required for DEC Alpha threads).
-
Guido van Rossum yazdı
The table size is now constrained to be a power of two, and we use a variable increment based on GF(2^n)-{0} (not that I have the faintest idea what that is :-) which helps avoid the expensive '%' operation. Some of the entries in the table of polynomials have been modified according to a post by Tim Peters.
-
- 27 Ock, 1997 3 kayıt (commit)
-
-
Guido van Rossum yazdı
- Use co->... instead of f->f_code->...; save an extra lookup of what we already have in a local variable). - Remove test for nlocals > 0 before setting fastlocals to f->f_localsplus; 0 is a rare case and the assignment is safe even then.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
called with keyword arguments -- the keyword and value were leaked. This affected for instance with a __call__() method. Bug reported and fix supplied by Jim Fulton.
-
- 24 Ock, 1997 10 kayıt (commit)
-
-
Guido van Rossum yazdı
i.e., counting opcode frequencies, or (with DXPAIRS defined) opcode pair frequencies. Define DYNAMIC_EXECUTION_PROFILE on the command line (for this file and for sysmodule.c) to enable.
-
Guido van Rossum yazdı
jump to the "Kill locals" section at the end. Add #ifdef macintosh bandaid to make sure we call sigcheck() on the Mac.
-
Guido van Rossum yazdı
in ceval.c).
-
Guido van Rossum yazdı
tb_lineno. Store it in tb_lineno for the user.
-
Guido van Rossum yazdı
give the extra slots to the stack rather than than forgetting about them (this reduces the number of reallocs done).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
table which is incorporated in the code object. This way, the runtime overhead to keep track of line numbers is only incurred when an exception has to be reported.
-
Guido van Rossum yazdı
by the compiler (in lieu of SET_LINENO instructions).
-
- 23 Ock, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
initparser()) instead of statically (in the initializer). The static initialization, using the address of an object in a different DLL, is too much for the Microsoft VC++ compiler, and we want to be able to build this module as a separate DLL (it's nice to have but we don't want to increase the core DLL's size by 25K). This same trick has been applied to a number of modules, e.g. NumPy and _tkinter.
-
Guido van Rossum yazdı
string keys. Just doing a pointer compare before the string compare (in fact before the hash compare!) is just as fast.
-
- 22 Ock, 1997 11 kayıt (commit)
-
-
Guido van Rossum yazdı
- -mt option for Solaris threads with Solaris compiler - make clean when switching static link status for Linux - DEC alpha --with-dec-threads option - SunOS removed unnecessary warnings, mention -Xa for SunPro - Setup.local file - warn to try make clean after changing readline option - mention --with-threads as alias for --with-thread
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
*final* linker argument. This implies --with-thread. Reimplemented --with-threads as an alias for --with-thread.
-
Guido van Rossum yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 21 Ock, 1997 3 kayıt (commit)
-
-
Guido van Rossum yazdı
selection; return None instead.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-