An error occurred fetching the project authors.
- 16 Jul, 2008 1 commit
-
-
Robert Bradshaw authored
There should be a way to disable this...
-
- 19 Jun, 2008 3 commits
-
-
Robert Bradshaw authored
-
Robert Bradshaw authored
-
Dag Sverre Seljebotn authored
-
- 18 Jun, 2008 1 commit
-
-
Dag Sverre Seljebotn authored
-
- 12 Jun, 2008 1 commit
-
-
Stefan Behnel authored
-
- 30 May, 2008 1 commit
-
-
Dag Sverre Seljebotn authored
-
- 29 May, 2008 1 commit
-
-
Robert Bradshaw authored
-
- 16 May, 2008 1 commit
-
-
Stefan Behnel authored
-
- 07 Jun, 2008 1 commit
-
-
Robert Bradshaw authored
-
- 23 Mar, 2008 1 commit
-
-
Gary Furnish authored
-
- 23 Feb, 2008 1 commit
-
-
Robert Bradshaw authored
-
- 07 Feb, 2008 2 commits
-
-
Robert Bradshaw authored
-
Robert Bradshaw authored
-
- 06 Feb, 2008 1 commit
-
-
Robert Bradshaw authored
-
- 01 Feb, 2008 1 commit
-
-
Robert Bradshaw authored
-
- 17 Jan, 2008 1 commit
-
-
Robert Bradshaw authored
-
- 01 Nov, 2007 1 commit
-
-
Robert Bradshaw authored
-
- 21 Oct, 2007 1 commit
-
-
Stefan Behnel authored
-
- 18 Oct, 2007 1 commit
-
-
Stefan Behnel authored
-
- 17 Oct, 2007 1 commit
-
-
Stefan Behnel authored
-
- 15 Oct, 2007 1 commit
-
-
Stefan Behnel authored
-
- 11 Oct, 2007 2 commits
-
-
Robert Bradshaw authored
For example, in the SAGE source we have 1158 PyInt_FromLong(0) 776 PyInt_FromLong(1) 258 PyInt_FromLong(2) 33 PyInt_FromLong(3) 21 PyInt_FromLong(10) and a thousand or so others... Who knows how many of these are in loops too.
-
Stefan Behnel authored
-
- 19 Sep, 2007 1 commit
-
-
Robert Bradshaw authored
so the generated c files don't depend on the version of python used to run Cython
-
- 10 Sep, 2007 2 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 28 Jul, 2007 1 commit
-
-
William Stein authored
-
- 11 Jul, 2007 1 commit
-
-
Robert Bradshaw authored
Emulates behavior of from <module> import *
-
- 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.
-
- 20 Oct, 2006 1 commit
-
-
William Stein authored
-