aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* revert these files to remove os.prlimit from 2.7Matti Picus2020-10-301-31/+1
|
* my_prlimit -> _prlimit (in _resource_build)cptpcrd2020-10-291-1/+1
|
* add resource.prlimit() (added in CPython 3.4)cptpcrd2020-10-281-1/+31
|
* Modernise test_sqlite3.py and test only the host's _sqlite3Ronan Lamy2018-11-281-4/+6
|
* fill in struct_rusage's full namePhilip Jenvey2017-12-011-0/+1
|
* Issue #2270 (part): accept and round down floats in resource.setrlimit()Armin Rigo2016-08-181-1/+5
|
* port _pypy_waitArmin Rigo2016-04-181-13/+12
|
* Rewrite resource.py to use cffi instead of ctypes_config_cacheArmin Rigo2016-04-181-130/+66
|
* Remove unnecessary import and unused variableDan Loewenherz2011-10-131-2/+1
|
* Silence warnings by declaring argtypes and restype.Armin Rigo2011-06-161-1/+13
|
* Found the proper way: try except ImportError. Sorry if e.g. you hadArmin Rigo2010-12-021-6/+10
| | | | troubles with older pypy-c's.
* A first round of adding @__pypy__.builtinify a bit everywhere... :-(Armin Rigo2010-11-301-1/+6
|
* merge the sys-prefix branch.Antonio Cuni2010-06-241-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