Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | revert these files to remove os.prlimit from 2.7 | Matti Picus | 2020-10-30 | 1 | -31/+1 |
| | |||||
* | my_prlimit -> _prlimit (in _resource_build) | cptpcrd | 2020-10-29 | 1 | -1/+1 |
| | |||||
* | add resource.prlimit() (added in CPython 3.4) | cptpcrd | 2020-10-28 | 1 | -1/+31 |
| | |||||
* | Modernise test_sqlite3.py and test only the host's _sqlite3 | Ronan Lamy | 2018-11-28 | 1 | -4/+6 |
| | |||||
* | fill in struct_rusage's full name | Philip Jenvey | 2017-12-01 | 1 | -0/+1 |
| | |||||
* | Issue #2270 (part): accept and round down floats in resource.setrlimit() | Armin Rigo | 2016-08-18 | 1 | -1/+5 |
| | |||||
* | port _pypy_wait | Armin Rigo | 2016-04-18 | 1 | -13/+12 |
| | |||||
* | Rewrite resource.py to use cffi instead of ctypes_config_cache | Armin Rigo | 2016-04-18 | 1 | -130/+66 |
| | |||||
* | Remove unnecessary import and unused variable | Dan Loewenherz | 2011-10-13 | 1 | -2/+1 |
| | |||||
* | Silence warnings by declaring argtypes and restype. | Armin Rigo | 2011-06-16 | 1 | -1/+13 |
| | |||||
* | Found the proper way: try except ImportError. Sorry if e.g. you had | Armin Rigo | 2010-12-02 | 1 | -6/+10 |
| | | | | troubles with older pypy-c's. | ||||
* | A first round of adding @__pypy__.builtinify a bit everywhere... :-( | Armin Rigo | 2010-11-30 | 1 | -1/+6 |
| | |||||
* | merge the sys-prefix branch. | Antonio Cuni | 2010-06-24 | 1 | -0/+162 |
The most important changes are: 1) trunk/pypy/lib has been moved to trunk/lib_pypy: the code there is really pure python and should not depend on pypy. However, some of the tests existed as AppLevel tests: since they need to be run inside the pypy/ package, they have been moved to pypy/module/test_lib_pypy. Also, a custom conftest makes py.test module/test_lib_pypy also run the tests in ../lib_pypy 2) sys.pypy_prefix has been removed. Instead, sys.prefix and sys.exec_prefix (which are always the same) are added. The prefix is searched at runtime, starting from the directory where the pypy executable resides and walking up until it finds the expected directoris (lib-python and lib_pypy) The layout of the svn checkout has been designed in a way that it will be possibile to run virtualenv -p translator/goal/pypy-c, without needing to install pypy system-wide |