[pypy-commit] lang-js default: fixed translation.

2013-06-03 Thread andrewsmedina
Author: Andrews Medina Branch: Changeset: r396:e2275b282ab9 Date: 2013-05-29 00:04 -0300 http://bitbucket.org/pypy/lang-js/changeset/e2275b282ab9/ Log:fixed translation. diff --git a/js/builtins/array.py b/js/builtins/array.py --- a/js/builtins/array.py +++ b/js/builtins/array.py @@ -56,10

[pypy-commit] stmgc default: Forgot about one aspect of read barriers. Now they are no longer

2013-06-03 Thread arigo
Author: Armin Rigo Branch: Changeset: r59:14020650fc09 Date: 2013-06-03 10:45 +0200 http://bitbucket.org/pypy/stmgc/changeset/14020650fc09/ Log:Forgot about one aspect of read barriers. Now they are no longer "extremely cheap". I hope they can still be "very cheap". diff --git a/c3/

[pypy-commit] stmgc default: Saved the day by moving the cache check inline in 4 cpu instructions.

2013-06-03 Thread arigo
Author: Armin Rigo Branch: Changeset: r60:39d1f410f3ce Date: 2013-06-03 10:59 +0200 http://bitbucket.org/pypy/stmgc/changeset/39d1f410f3ce/ Log:Saved the day by moving the cache check inline in 4 cpu instructions. diff --git a/c3/doc-stmgc.txt b/c3/doc-stmgc.txt --- a/c3/doc-stmgc.t

[pypy-commit] lang-smalltalk default: changed wrapping mechanism of interpreterProxy functions(ipfs):

2013-06-03 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r435:9471f0ad6d08 Date: 2013-06-03 11:33 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/9471f0ad6d08/ Log:changed wrapping mechanism of interpreterProxy functions(ipfs): signature is now given from (int, float, oop, ...) and

[pypy-commit] stmgc default: In-progress

2013-06-03 Thread arigo
Author: Armin Rigo Branch: Changeset: r61:82b9992a758c Date: 2013-06-03 15:57 +0200 http://bitbucket.org/pypy/stmgc/changeset/82b9992a758c/ Log:In-progress diff --git a/c3/doc-objects.txt b/c3/doc-objects.txt new file mode 100644 --- /dev/null +++ b/c3/doc-objects.txt @@ -0,0 +1,76 @@ + + +

[pypy-commit] pypy default: typo

2013-06-03 Thread arigo
Author: Armin Rigo Branch: Changeset: r64737:699be6433207 Date: 2013-06-03 17:25 +0200 http://bitbucket.org/pypy/pypy/changeset/699be6433207/ Log:typo diff --git a/pypy/doc/windows.rst b/pypy/doc/windows.rst --- a/pypy/doc/windows.rst +++ b/pypy/doc/windows.rst @@ -201,7 +201,7 @@ hackin

[pypy-commit] pypy default: Merge heads

2013-06-03 Thread rguillebert
Author: Romain Guillebert Branch: Changeset: r64739:f556942951f9 Date: 2013-06-03 16:40 + http://bitbucket.org/pypy/pypy/changeset/f556942951f9/ Log:Merge heads diff --git a/pypy/doc/windows.rst b/pypy/doc/windows.rst --- a/pypy/doc/windows.rst +++ b/pypy/doc/windows.rst @@ -199,9 +199,

[pypy-commit] pypy default: Change how boxes do cache lookup

2013-06-03 Thread rguillebert
Author: Romain Guillebert Branch: Changeset: r64738:e69d28ee34e0 Date: 2013-06-03 16:40 + http://bitbucket.org/pypy/pypy/changeset/e69d28ee34e0/ Log:Change how boxes do cache lookup diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py --- a/pypy/

[pypy-commit] stmgc default: More preparation.

2013-06-03 Thread arigo
Author: Armin Rigo Branch: Changeset: r62:4456f79692e9 Date: 2013-06-03 19:24 +0200 http://bitbucket.org/pypy/stmgc/changeset/4456f79692e9/ Log:More preparation. diff --git a/c3/doc-objects.txt b/c3/doc-objects.txt --- a/c3/doc-objects.txt +++ b/c3/doc-objects.txt @@ -8,19 +8,19 @@ Pri

[pypy-commit] pypy py3k: apply 722471a15693 from default

2013-06-03 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r64741:43b233e93eed Date: 2013-06-03 16:34 -0700 http://bitbucket.org/pypy/pypy/changeset/43b233e93eed/ Log:apply 722471a15693 from default diff --git a/lib-python/3/distutils/command/build_ext.py b/lib-python/3/distutils/command/build_ext.py --

[pypy-commit] pypy py3k: o fix identifier handling around space.getname (use unicode throughout)

2013-06-03 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r64742:4042cddab652 Date: 2013-06-03 17:29 -0700 http://bitbucket.org/pypy/pypy/changeset/4042cddab652/ Log:o fix identifier handling around space.getname (use unicode throughout) o space.getname\W_TypeObject.get_module_type_name now

[pypy-commit] pypy py3k: fix translation

2013-06-03 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r64743:a554ac771ba3 Date: 2013-06-03 18:34 -0700 http://bitbucket.org/pypy/pypy/changeset/a554ac771ba3/ Log:fix translation diff --git a/pypy/module/cpyext/classobject.py b/pypy/module/cpyext/classobject.py --- a/pypy/module/cpyext/classobject.p

[pypy-commit] pypy default: Inline into rbigint so that comparisons can be constant folded.

2013-06-03 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r64744:661d7f7624dc Date: 2013-06-03 20:41 -0700 http://bitbucket.org/pypy/pypy/changeset/661d7f7624dc/ Log:Inline into rbigint so that comparisons can be constant folded. diff --git a/pypy/module/pypyjit/policy.py b/pypy/module/pypyjit/policy.py --- a

[pypy-commit] pypy default: trailing whitespace

2013-06-03 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r64745:4830df760669 Date: 2013-06-03 20:44 -0700 http://bitbucket.org/pypy/pypy/changeset/4830df760669/ Log:trailing whitespace diff --git a/rpython/jit/metainterp/optimizeopt/intutils.py b/rpython/jit/metainterp/optimizeopt/intutils.py --- a/rpython/