- 22 May, 2015 3 commits
-
-
Marius Wachtler authored
-
Marius Wachtler authored
-
Marius Wachtler authored
-
- 21 May, 2015 2 commits
-
-
Kevin Modzelewski authored
tracebacks, struct.pack
-
Kevin Modzelewski authored
The struct module just defers to PyLong_As* methods, so the actual change here is improving our implementation of _PyLong_AsByteArray, to add - overflow and underflow checking - twos-complement conversion (mpz_export ignores the sign) - endianness
-
- 20 May, 2015 3 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Now that we have frame support including f_back, we can use the cpython implementations of these functions. We don't have the same traceback objects (don't have tb_frame or tb_next), so there are still some modifications to the traceback library.
-
Kevin Modzelewski authored
Copy all HAVE_FOO defines from cpython
-
- 19 May, 2015 14 commits
-
-
Kevin Modzelewski authored
Previously we were only copying them when we noticed they were needed, but we've been spending a fair bit of time hunting down issues that are caused by a missing HAVE_ define. So instead, bulk-copy the ones that the CPython configure script determined. I bet we'll start running into some that were available on my 14.04 machine but won't be on other configurations; I'm hoping that an extra define is easier to debug than a missing one (build error vs run error), making this the better approach.
-
Kevin Modzelewski authored
Add full_check and fix a couple misc things
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Add PyWrapperDescr_Type, allow cls->tp_descr_get, allow overwriting attributes inside PyType_Ready
-
Marius Wachtler authored
-
Marius Wachtler authored
-
Kevin Modzelewski authored
Add support for compile('single') and func.__globals__/func.func_globals
-
Kevin Modzelewski authored
fix linter to allow comments after includes
-
Kevin Modzelewski authored
When loading a shared library let the GC know about the static variables
-
Kevin Modzelewski authored
Add PyClass_New, PyMethod_New, capifunc.__module__, missing gc handles, file.truncate
-
Marius Wachtler authored
-
Kevin Modzelewski authored
Fix `exec s in other_module`
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
the ast interpreter would incorrectly think it could OSR out to the JIT, which would barf.
-
- 18 May, 2015 2 commits
-
-
Kevin Modzelewski authored
Mostly related to handling of building shared-library dependencies. The current system is getting pretty messy, of which libraries (test extension built for pyston/cpython, sharedmods) are pulled from which builds (source directory vs cmake directory) in which modes (check_ vs run_). This commit doesn't change the actual functionality but tries to just make it clearer what is getting built when. (also fixes a missing dependency)
-
Marius Wachtler authored
-
- 17 May, 2015 4 commits
-
-
Kevin Modzelewski authored
Add pycurl as an 'extra' test
-
Kevin Modzelewski authored
I don't feel like it's worth adding libcurl to our dependencies just so that we can test pycurl. Let's try adding it as a Travis-CI-only test; I'm slightly worried that that will confuse people, but I think we're already pretty used to travis-ci being a more comprehensive test suite.
-
Kevin Modzelewski authored
Multiprocessing
-
Kevin Modzelewski authored
by adding from_cpython/setup.py. This way we can build _multiprocessing as a shared module to be loaded on-demand, since it's quite expensive right now for us to import it. CPython has a similar setup.py, but theirs is pretty large (2kloc) so I don't feel like we need to try copying yet. We could/should move other modules to use this strategy. I'm not 100% happy with the build system support, but we can iterate on that.
-
- 16 May, 2015 5 commits
-
-
Marius Wachtler authored
Encountered this one with the mixed tab and spaces test before it got fixed in pypa
-
Marius Wachtler authored
-
Marius Wachtler authored
Add PyClass_New, PyMethod_New, capifunc.__module__, missing gc handler, fix instancemethodGet if obj == NULL
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
For weakly-referenced objects that are garbage, we end up freeing their attributes within that collection (assuming they are garbage as well). This means that these objects are in a state that is not quite dead (we don't want to allocate anything else in that space and clobber their weakreflist), and not quite alive (their attributes point to garbage memory). So, change the handling to finish looking at those objects in the collection that they become garbage, and then free them to make them properly dead. weakrefs-handling is unavoidably reentrant, but now we only have to worry about fully-dead (the referents) or fully-alive (the weakrefs) objects.
-
- 15 May, 2015 6 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
(pickle does this) attrwrapper.iteritems also need to return an iterator (previously, a list) since pickle calls next on those directly as well.
-
Kevin Modzelewski authored
Our initialization is a bit different from CPython's, and multiprocessing seems pretty sensitive to that. So initialize it in a different place than we load the rest of the builtin modules. Some of the functionality relies on ctypes so it doesn't work, but it looks like ctypes doesn't get imported until you try to use those features.
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
misc library work
-
Marius Wachtler authored
-
- 14 May, 2015 1 commit
-
-
Kevin Modzelewski authored
Paste kind of uses it. It might also be ok to just have it throw an ImportError()
-