[pypy-commit] pypy nedbat-sandbox: An implementation of do_ll_os__ll_os_fstat, no tests, not sure if it's right.

2011-11-29 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox Changeset: r50002:ca8246ba93b7 Date: 2011-11-28 21:01 -0500 http://bitbucket.org/pypy/pypy/changeset/ca8246ba93b7/ Log:An implementation of do_ll_os__ll_os_fstat, no tests, not sure if it's right. diff --git a/pypy/translator/sa

[pypy-commit] pypy nedbat-sandbox: Avoid a compile at startup by using our own marshalling of stat results, instead of calling into rmarshal to do it.

2011-11-29 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox Changeset: r50003:0cca0b181f5c Date: 2011-11-29 22:00 -0500 http://bitbucket.org/pypy/pypy/changeset/0cca0b181f5c/ Log:Avoid a compile at startup by using our own marshalling of stat results, instead of calling into rmarshal to do it

[pypy-commit] pypy nedbat-sandbox: A new test: try opening too many files in the sandbox, see that you can't

2011-12-04 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox Changeset: r50155:6f823f8ecd00 Date: 2011-12-03 22:23 -0500 http://bitbucket.org/pypy/pypy/changeset/6f823f8ecd00/ Log:A new test: try opening too many files in the sandbox, see that you can't diff --git a/pypy/translator/sandbox

[pypy-commit] pypy nedbat-sandbox: A correct implementation of os.fstat, with a test.

2011-12-04 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox Changeset: r50156:e4704f598176 Date: 2011-12-04 16:05 -0500 http://bitbucket.org/pypy/pypy/changeset/e4704f598176/ Log:A correct implementation of os.fstat, with a test. diff --git a/pypy/translator/sandbox/sandlib.py b/pypy/translator/sandbox

[pypy-commit] pypy nedbat-sandbox: Add a test of opening lots of real files also.

2011-12-04 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox Changeset: r50160:d06f77ba878f Date: 2011-12-04 18:42 -0500 http://bitbucket.org/pypy/pypy/changeset/d06f77ba878f/ Log:Add a test of opening lots of real files also. diff --git a/pypy/translator/sandbox/test/test_sandlib.py b/pypy/translator

[pypy-commit] pypy nedbat-sandbox: Add a sandlib test for lseek

2011-12-04 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox Changeset: r50161:ba523ca5ff05 Date: 2011-12-04 23:08 -0500 http://bitbucket.org/pypy/pypy/changeset/ba523ca5ff05/ Log:Add a sandlib test for lseek diff --git a/pypy/translator/sandbox/test/test_sandlib.py b/pypy/translator/sandbox/test

[pypy-commit] pypy nedbat-sandbox: Remove some pypy dependencies from sandlib.

2011-12-05 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox Changeset: r50170:4fe097ff1a9b Date: 2011-12-05 08:49 -0500 http://bitbucket.org/pypy/pypy/changeset/4fe097ff1a9b/ Log:Remove some pypy dependencies from sandlib. diff --git a/pypy/translator/sandbox/sandlib.py b/pypy/translator/sandbox

[pypy-commit] pypy nedbat-sandbox: Implement from os: getuid, geteuid, getgid, getegid; in an attempt to get 'import site' working, but the problems go deeper.

2011-12-10 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox Changeset: r50359:7fa920a29974 Date: 2011-12-10 14:33 -0500 http://bitbucket.org/pypy/pypy/changeset/7fa920a29974/ Log:Implement from os: getuid, geteuid, getgid, getegid; in an attempt to get 'import site' working, but the p

[pypy-commit] pypy nedbat-sandbox-2: Make sandlib logging conditional, and only import pypy.tool.ansi_print if we are logging.

2011-12-14 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox-2 Changeset: r50526:47a28aeffae1 Date: 2011-12-14 20:16 -0500 http://bitbucket.org/pypy/pypy/changeset/47a28aeffae1/ Log:Make sandlib logging conditional, and only import pypy.tool.ansi_print if we are logging. diff --git a/pypy

[pypy-commit] pypy nedbat-sandbox-2: Move another import so we don't require 'import py'

2011-12-14 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox-2 Changeset: r50527:585b46142c3e Date: 2011-12-14 22:58 -0500 http://bitbucket.org/pypy/pypy/changeset/585b46142c3e/ Log:Move another import so we don't require 'import py' diff --git a/pypy/translator/sandbox/sandlib.py b/

[pypy-commit] pypy nedbat-sandbox-2: Py is now required again.

2011-12-28 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox-2 Changeset: r50924:c03e4d0528e4 Date: 2011-12-28 08:58 -0500 http://bitbucket.org/pypy/pypy/changeset/c03e4d0528e4/ Log:Py is now required again. diff --git a/pypy/translator/sandbox/sandlib.py b/pypy/translator/sandbox/sandlib.py --- a/pypy

[pypy-commit] pypy nedbat-sandbox-2: Change pypy_interact's default to quiet, you have to ask for verbose.

2011-12-28 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox-2 Changeset: r50925:cd7b359d0a00 Date: 2011-12-28 09:21 -0500 http://bitbucket.org/pypy/pypy/changeset/cd7b359d0a00/ Log:Change pypy_interact's default to quiet, you have to ask for verbose. diff --git a/pypy/translator/sa

[pypy-commit] pypy default: Merge sandbox tweaks from nedbat-sandbox-2

2011-12-28 Thread ned
Author: Ned Batchelder Branch: Changeset: r50926:42fbbcbfc2ac Date: 2011-12-28 09:25 -0500 http://bitbucket.org/pypy/pypy/changeset/42fbbcbfc2ac/ Log:Merge sandbox tweaks from nedbat-sandbox-2 diff --git a/pypy/translator/sandbox/pypy_interact.py b/pypy/translator/sandbox/pypy_interact.py

[pypy-commit] pypy nedbat-sandbox-2: Close nedbat-sandbox-2

2011-12-28 Thread ned
Author: Ned Batchelder Branch: nedbat-sandbox-2 Changeset: r50927:93bb4d305fdb Date: 2011-12-28 09:27 -0500 http://bitbucket.org/pypy/pypy/changeset/93bb4d305fdb/ Log:Close nedbat-sandbox-2 ___ pypy-commit mailing list [email protected] http