aboutsummaryrefslogtreecommitdiff
path: root/pypy
Commit message (Expand)AuthorAgeFilesLines
* Trying to fix issue677: remove the hard-coded endianness from dtoa.c,Armin Rigo2011-03-262-3/+23
* Move this hack into an official interface.Armin Rigo2011-03-262-6/+10
* Test and implementation for "i0 > i0" and friends.Armin Rigo2011-03-262-4/+50
* The purpose of these tests is not to count the number ofArmin Rigo2011-03-261-10/+12
* Backout c8e4be12f7b1, whose purpose is actually to test thatArmin Rigo2011-03-261-1/+33
* Fix the test that broke when changing how "x/y" is implemented.Armin Rigo2011-03-262-12/+11
* Kill the test for division_to_rshift, because it's already testedArmin Rigo2011-03-261-33/+1
* On x86-64, put the correct dfi assembler macros to allow gdbArmin Rigo2011-03-241-0/+3
* Add support for PyUnicode_FromUnicode(NULL, size), which allocates a (tempora...Amaury Forgeot d'Arc2011-03-263-13/+162
* (lambacck) Implement PyExceptionInstance_Class,Amaury Forgeot d'Arc2011-03-262-0/+8
* Appdirect tests really run too fast. Slow down a littleAmaury Forgeot d'Arc2011-03-251-1/+1
* MixedModule tests make no sense with appdirect.Amaury Forgeot d'Arc2011-03-252-1/+3
* Don't even try to load a dynamic module when cpyext is not enabled.Amaury Forgeot d'Arc2011-03-252-5/+3
* cpyext: Fix call to the tp_getattro type slot.Amaury Forgeot d'Arc2011-03-252-5/+17
* Ensure that a PyTypeObject is "realized" only once, either directly with PyTy...Amaury Forgeot d'Arc2011-03-251-6/+12
* Rewrite in the same way int_floordiv.Armin Rigo2011-03-251-21/+16
* Remove the scary sequence of operations for int_mod, andArmin Rigo2011-03-252-15/+20
* By default, disable 'withsmalllong'. It seems to not give theArmin Rigo2011-03-251-2/+2
* remove some oopspecs in rdict to make the JIT trace the hash functions inCarl Friedrich Bolz2011-03-253-16/+70
* - setdefault only does one lookup nowCarl Friedrich Bolz2011-03-251-6/+13
* Fix for the failing test in test_typedef. The cause was ultimatelyArmin Rigo2011-03-242-2/+6
* refactor rdict a bit:Carl Friedrich Bolz2011-03-243-20/+23
* cpyext: finally managed to support metatypesAmaury Forgeot d'Arc2011-03-243-2/+11
* cpyext: Add support for user-allocated PyObjects, when the initialization onl...Amaury Forgeot d'Arc2011-03-244-25/+60
* Implement imp.load_dynamic(), which loads a cpyext dll.Amaury Forgeot d'Arc2011-03-243-1/+19
* Translation fixAmaury Forgeot d'Arc2011-03-241-2/+3
* Implement PyImport_ReloadModuleAmaury Forgeot d'Arc2011-03-242-0/+12
* _PyLong_FromByteArray() first argument is an "unsigned char*"Amaury Forgeot d'Arc2011-03-241-4/+4
* Implement thread.interrupt_main(), which is absent from CPython tests :-(Amaury Forgeot d'Arc2011-03-246-7/+41
* merge headstav2011-03-244-20/+36
|\
| * merge headsLaura Creighton2011-03-2434-384/+779
| |\
| | * merge headsArmin Rigo2011-03-243-1/+27
| | |\
| | * | Systematically list both SETFIELD and SETARRAYITEM.Armin Rigo2011-03-241-1/+2
| | * | Test and improvement. Also a fix for another case, but it's hard to test.Armin Rigo2011-03-242-15/+31
| * | | change these files to look for .rst . The real fix will remove them, though,Laura Creighton2011-03-242-4/+3
* | | | Added tests for the new extmodules config option.tav2011-03-241-0/+66
| |_|/ |/| |
* | | Added documentation on the new extmodules config option.tav2011-03-242-1/+13
* | | Added --ext support for third-party modules.tav2011-03-242-1/+15
| |/ |/|
* | Refactor heap.py, encapsulating in a new class CachedField theArmin Rigo2011-03-242-117/+190
* | Bug found with targetbf.py: the second setfield_gc() is missing.Armin Rigo2011-03-241-0/+27
* | Fix.Armin Rigo2011-03-241-2/+2
* | don't repeat strlen ops.Alex Gaynor2011-03-234-64/+78
* | cpyext: implement PyInt_GetMax() and restore support for longs in Py_BuildValueAmaury Forgeot d'Arc2011-03-233-24/+21
* | Let extension modules call PyThreadState_Swap() and PyEval_AcquireThread(),Amaury Forgeot d'Arc2011-03-233-38/+61
* | Translation fixAmaury Forgeot d'Arc2011-03-231-0/+3
* | cpyext: Expose Py_FrozenFlag with a dummy value.Amaury Forgeot d'Arc2011-03-231-0/+2
* | Expose functions already implemented in src/modsupport.cAmaury Forgeot d'Arc2011-03-231-0/+2
* | cpyext: implement PyFile_WriteStringAmaury Forgeot d'Arc2011-03-233-41/+19
* | On Windows, Python.h defines snprintf and vsnprintf...Amaury Forgeot d'Arc2011-03-231-0/+14
* | cpyext: implement PySys_WriteStdout, PySys_WriteStderrAmaury Forgeot d'Arc2011-03-236-0/+137