An error occurred fetching the project authors.
- 30 Oct, 2007 1 commit
-
-
Stefan Behnel authored
-
- 27 Oct, 2007 1 commit
-
-
Stefan Behnel authored
-
- 24 Oct, 2007 2 commits
-
-
Robert Bradshaw authored
Decref cdef globals, interned values, and imported types
-
Robert Bradshaw authored
-
- 15 Oct, 2007 1 commit
-
-
Stefan Behnel authored
-
- 05 Sep, 2007 1 commit
-
-
Robert Bradshaw authored
This is so mutating inplace operations can be detected safely.
-
- 11 Jul, 2007 1 commit
-
-
Robert Bradshaw authored
Emulates behavior of from <module> import *
-
- 10 Jul, 2007 1 commit
-
-
Robert Bradshaw authored
For some reason, it actually makes it slower in some of the most common cases (now commented out). Why? It does help in others.
-
- 14 Apr, 2007 1 commit
-
-
Robert Bradshaw authored
The code "__Pyx_GetName(__pyx_b, __pyx_n_[string])" is performed in several thousand places throughout the sage library, and can be quite expensive (a dictionary lookup, possibly raising an error, etc.) This is redundant as the result will always be the same. I perform the lookup once (on loading the module), then have a pointer to the result for all subsequent use. The most common examples are bool/str/int (both as function calls and in isinstance), True/False, and raisign errors. A side feature is that on loading a module with an illegal __builtin__ name, it will complain at load time rather than at run time.
-
- 25 Oct, 2006 1 commit
-
-
William Stein authored
-p, --embed-positions If specified, the positions in Pyrex files of each function definition is embedded in its docstring. This is very useful to support interactive viewing of *Pyrex* source code in, e.g, IPython.
-
- 20 Oct, 2006 1 commit
-
-
William Stein authored
-