- 01 Oct, 2015 4 commits
-
-
Kevin Modzelewski authored
I'm not quite sure what they're trying to use it for, but it looks like it doesn't really do anything. And we're no worse off with the patch+assert than simply ignoring the behavior.
-
Kevin Modzelewski authored
We don't support that, and hopefully we don't have to. CPython seems pretty inconsistent about it and PyPy doesn't support it.
-
Kevin Modzelewski authored
Ellipsis implementation
-
Dong-hee Na authored
-
- 30 Sep, 2015 3 commits
-
-
Kevin Modzelewski authored
type.__getattribute__ and object.__getattribute__ are different
-
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 4 commits
-
-
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 12 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.
-
Kevin Modzelewski authored
Support the "decorator" library
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
`print >>None` goes to stdout, and printing to things without write() functions should throw exceptions.
-
Kevin Modzelewski authored
by converting to our DICT_BACKED hidden class strategy.
-
Kevin Modzelewski authored
Set a flag on the class, rather than having to specify a whitelist. Even though this is pretty annoying I think it's still worth it.
-