aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Make the "default" argument of getname() optional.Armin Rigo2010-12-2914-39/+39
* not that it matters terribly, but fix immutable_builtintypes in the presence ofCarl Friedrich Bolz2010-12-172-6/+6
* move __repr__ to dicttype.pyBenjamin Peterson2010-12-152-40/+35
* being pedantic about is verus is_wBenjamin Peterson2010-12-151-1/+1
* (cfbolz, arigo)Armin Rigo2010-12-151-0/+8
* remove unused EmptyDictImplemenationCarl Friedrich Bolz2010-12-151-39/+0
* fix XXXCarl Friedrich Bolz2010-12-152-1/+3
* try to re-enable empty dicts by putting the functionality directly into the b...Carl Friedrich Bolz2010-12-152-12/+20
* disable the EmptyDictImplementation for now, it really seems to be the reason...Carl Friedrich Bolz2010-12-152-3/+4
* implement an EmptyDictImplementation, that most dictionaries start out as. ThisCarl Friedrich Bolz2010-12-132-4/+43
* refactor the complexobject implementation to be less close to the C code and toCarl Friedrich Bolz2010-12-062-140/+129
* remove unused space argumentCarl Friedrich Bolz2010-12-064-9/+7
* Clean up interp_string_to_float to no longer use W_LongObjects for theCarl Friedrich Bolz2010-12-063-50/+25
* revert. wrong branch wrong checkinMaciej Fijalkowski2010-12-021-2/+2
* Use jit_invariant_field for ModuleCellMaciej Fijalkowski2010-12-021-2/+2
* Reshuffle a bit, should be even faster if you use getattr with the JIT becauseCarl Friedrich Bolz2010-11-301-8/+11
* fix the test, which should make getattr and setattr a bit more JIT-friendlyCarl Friedrich Bolz2010-11-301-5/+15
* Merge branch/rlist-jit.Armin Rigo2010-11-301-1/+1
* Support space.wrap(x), where x is a special shorter-than-usualArmin Rigo2010-11-291-2/+6
* Revert SpaceOperation changes, they're parked on a branch for nowMaciej Fijalkowski2010-11-192-61/+5
* make SpaceOperations consume less space by making them specialized on exact n...Maciej Fijalkowski2010-11-192-5/+61
* a slight newstylizationMaciej Fijalkowski2010-11-141-1/+1
* svn merge -r78362:HEAD http://codespeak.net/svn/pypy/branch/mapdict-without-jitCarl Friedrich Bolz2010-11-134-57/+298
* make "except {NotImplementedError,AssertionError}" explicitly not rpython (bu...Antonio Cuni2010-11-102-1/+31
* Optimize the code for str.translate(..., deletechars).Armin Rigo2010-11-071-4/+11
* Make everything newstyle in descroperationMaciej Fijalkowski2010-10-301-3/+3
* Fix the tests.Armin Rigo2010-10-301-12/+11
* Add dict.popitem() as an RPython operation, which gives it a better implement...Armin Rigo2010-10-302-9/+27
* -0L == 0L.Armin Rigo2010-10-291-0/+4
* fix failing weakref assertion errorCarl Friedrich Bolz2010-10-292-1/+9
* fix one of the nightly failuresCarl Friedrich Bolz2010-10-291-0/+16
* Use the more efficient parse_digit_string() from rbigint.Armin Rigo2010-10-293-28/+20
* This test contains tons of operations that are actually constant-foldedArmin Rigo2010-10-291-46/+58
* Kill most import; they are unneeded.Armin Rigo2010-10-291-10/+3
* Document this assert (thanks amaury).Armin Rigo2010-10-271-1/+1
* (cfbolz, arigo)Armin Rigo2010-10-2713-798/+43
* (amaury on irc, arigo)Armin Rigo2010-10-271-0/+9
* (arigo, cfbolz): essential optimization: don't intern the slot name if the slotCarl Friedrich Bolz2010-10-261-2/+2
* (arigo, cfbolz): after some discussion we decided that a custom metaclassCarl Friedrich Bolz2010-10-264-9/+47
* Merge branch/set-object-cleanup.Armin Rigo2010-10-267-252/+187
* Fixed instantiating subclasses of classmethod. This was found via Django, th...Alex Gaynor2010-10-251-1/+15
* (cfbolz, arigo): you learn something new every day. in cpython you can add slotsCarl Friedrich Bolz2010-10-252-4/+14
* Replace the exc_typ argument of the __exit__ method with an objectAmaury Forgeot d'Arc2010-10-221-3/+5
* Fix the test: in RPython, the 'exc_type' parameter of __exit__ is not usable.Amaury Forgeot d'Arc2010-10-221-0/+7
* Improve commentAmaury Forgeot d'Arc2010-10-211-1/+1
* Move SETUP_WITH out of the Unimplemented sectionAmaury Forgeot d'Arc2010-10-211-15/+15
* Implement the SETUP_WITH opcode for the flow object space running on code com...Amaury Forgeot d'Arc2010-10-211-3/+12
* Add support for "with" statements in RPython.Amaury Forgeot d'Arc2010-10-211-0/+20
* Merge branch/better-map-instances. Not enabled by default for the JITArmin Rigo2010-10-129-21/+1474
* Experimental (disabled by default): add a W_StringBufferObject,Armin Rigo2010-10-115-9/+167