- 02 Oct, 2015 1 commit
-
-
Kevin Modzelewski authored
You can't get the return value from a RewriteArgs without looking at the return convention. Debug mode will check the return convention during the execution of rewrites. Split "VALID_RETURN" into "HAS_RETURN" and "CAPI_RETURN" since some places used it to mean either. Hopefully this helps keep things clean. There are a lot of places that were implictly assuming a certain return convention, but now that they have to explicitly assume it, the issues are more obvious. Plus they will get checked in the debug builds. Also tried to fix things up while going through and doing this refactoring; I think I found a number of issues.
-
- 01 Oct, 2015 5 commits
-
-
Kevin Modzelewski authored
Fix registerDataSegment error when encountering symlinks
-
Marius Wachtler authored
the /proc/maps entry contains the absolute file path with resolved symlinks, this patch retrieves now the absolute path of the lib and resolves symlinks.
-
Kevin Modzelewski authored
Add "pyinotify" test, with a minor modification to Pyston
-
Kevin Modzelewski authored
Ellipsis implementation
-
Dong-hee Na authored
-
- 30 Sep, 2015 4 commits
-
-
Kevin Modzelewski authored
type.__getattribute__ and object.__getattribute__ are different
-
Boxiang Sun authored
-
Kevin Modzelewski authored
- allow list subclasses to add __init__ functions that take more parameters - support `[dict] == [attrwrapper]` - fix bug in my recent weakref change
-
Kevin Modzelewski authored
Calling object.__getattribute__ on a class will skip the normal special type attribute-lookup rules (checking base classes, executing descriptors).
-
- 29 Sep, 2015 6 commits
-
-
Boxiang Sun authored
-
Boxiang Sun authored
-
Kevin Modzelewski authored
make platform test pass
-
Kevin Modzelewski authored
misc fixes for pyopenssl
-
Marius Wachtler authored
-
asaka authored
-
- 28 Sep, 2015 6 commits
-
-
Marius Wachtler authored
-
Marius Wachtler authored
-
Marius Wachtler authored
before we only registered BSS data (aka static vars without initalizer) now we also register static vars with initalizer. CFFI (and probably other libraries) needs this.
-
Marius Wachtler authored
Add setting func.func_code, PyCFunction_Call, vars() error handling
-
Marius Wachtler authored
We pass most of the tests, some of the errors are becasue we don't use refcounting and lxml depends on it (aka pypy has the same issues)
-
Marius Wachtler authored
- in additon allow Py_TPFLAGS_HAVE_VERSION_TAG because even though we don't use it this flag shouldn't cause problems - allow tp_del because AFAIK it's implemented. - allow calling methods which specify METH_COEXIST because it doen't make a difference for the call - disable PyCode_New call inside cython because we don't support it yet and it's unused. - change cython to use PyCFunction_Call instead of the custom version it has for pypy
-
- 25 Sep, 2015 5 commits
-
-
Kevin Modzelewski authored
some long improvements
-
Kevin Modzelewski authored
Enable a bunch more sqlalchemy tests
-
Kevin Modzelewski authored
and sqlalchemy needs it to. Disable unboxing for now; I think I know how to reenable it but I don't think there will be much of a perf impact.
-
Kevin Modzelewski authored
The CPython implementation relies on immediate destruction.
-
Kevin Modzelewski authored
-
- 24 Sep, 2015 6 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
some improvements in intNew
-
Boxiang Sun authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
This checking should probably be enforced by the API.
-
Kevin Modzelewski authored
Wasn't checking the return convention -- not sure how I missed this when I added that.
-
- 23 Sep, 2015 7 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Misc fixes for sqlalchemy
-
Boxiang Sun authored
-
Kevin Modzelewski authored
It would memorize whether or not to call __getattr__, and didn't do enough guarding to make sure that that was the case.
-
Kevin Modzelewski authored
need to free the metaclasses in the same collection.
-
Kevin Modzelewski authored
A discrepancy between irgen and type_analysis was causing an assertion. The difference was that irgen will do full type inference for things that get put into closures (ie in the parent scope), but type_analysis was bailing and just saying that it was unknown.
-