- 25 Mar, 2014 3 commits
-
-
Damien George authored
-
Damien George authored
They still exist in commented-out form in objexcept.c if they are ever needed.
-
Damien George authored
Comes with some refactoring of code and renaming of files. All modules are now named mod*.[ch].
-
- 24 Mar, 2014 4 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
mux authored
* Add function to load static modules. * Use module_register to pyb module.
-
Damien George authored
-
- 23 Mar, 2014 6 commits
-
-
Paul Sokolovsky authored
For this, needed to implement DELETE_NAME bytecode (because var bound in except clause is automatically deleted at its end). http://docs.python.org/3/reference/compound_stmts.html#except : "When an exception has been assigned using as target, it is cleared at the end of the except clause."
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Based on issues raised during recent review and inconsistency of different implementations.
-
xbe authored
gamma() is now deprecated.
-
xbe authored
Switch to checking for the __APPLE__ and __MACH__ macros.
-
Damien George authored
-
- 22 Mar, 2014 16 commits
-
-
Paul Sokolovsky authored
Made solely to unbreak int-long.py test which in turn uncovered thinko with implementation of inplace ops. On mpz level, bitwise ops implemented only for same-sign numbers, and are not efficient (unconditional calling of mpn_cmp() is apparently superfluous).
-
Damien George authored
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Rachel Dowdall authored
-
Rachel Dowdall authored
-
Rachel Dowdall authored
Fixed modulo operator on ints and mp ints to agree with python. Added intdivmod.c and tests/basics/modulo.py.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
This is required to properly handle exceptions across yields.
-
Rachel Dowdall authored
Added exception hierarchy except for OSError and UnicodeError (requires arguments). Comment out the errors that aren't needed if memory becomes an issue.
-
Rachel Dowdall authored
-
Paul Sokolovsky authored
-
- 21 Mar, 2014 11 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
This is pre-requisite for having efficient implementation of str<->bytes conversion, and having that efficient is required with unfortunare str vs bytes dichotomy in Python3.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
xbe authored
Switch str.rpartition to search from left to right. Factor the duplicate code into one helper function.
-
xbe authored
-