[pypy-commit] pypy py3k: thread -> _thread

2012-10-11 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r58018:ab80024fd8fd Date: 2012-10-11 14:32 -0700 http://bitbucket.org/pypy/pypy/changeset/ab80024fd8fd/ Log:thread -> _thread diff --git a/pypy/module/imp/test/test_import.py b/pypy/module/imp/test/test_import.py --- a/pypy/module/imp/test/test_

[pypy-commit] pypy py3k: o all classes are newstyle now and thus cachable

2012-10-11 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r58021:d2423af68642 Date: 2012-10-11 14:33 -0700 http://bitbucket.org/pypy/pypy/changeset/d2423af68642/ Log:o all classes are newstyle now and thus cachable o py3 exception fix for test_change_methods diff --git a/pypy/objspace/std/test/t

[pypy-commit] pypy py3k: __getslice__ -> __getitem__

2012-10-11 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r58020:d5ac2d8225b7 Date: 2012-10-11 14:32 -0700 http://bitbucket.org/pypy/pypy/changeset/d5ac2d8225b7/ Log:__getslice__ -> __getitem__ diff --git a/pypy/module/test_lib_pypy/test_tputil.py b/pypy/module/test_lib_pypy/test_tputil.py --- a/pypy/m

[pypy-commit] pypy py3k: move the older py2 range tests (adapted to py3) into test_functional, they were

2012-10-11 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r58019:86c7aad53f10 Date: 2012-10-11 14:32 -0700 http://bitbucket.org/pypy/pypy/changeset/86c7aad53f10/ Log:move the older py2 range tests (adapted to py3) into test_functional, they were misplaced into test__functools instead of r

[pypy-commit] pypy py3k: Fix range.__repr__, test passes._

2012-10-11 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58017:b35694b4c086 Date: 2012-10-11 23:03 +0200 http://bitbucket.org/pypy/pypy/changeset/b35694b4c086/ Log:Fix range.__repr__, test passes._ diff --git a/pypy/module/__builtin__/functional.py b/pypy/module/__builtin__/functional.py --- a

[pypy-commit] pypy py3k: Fix tests for _cffi_backend

2012-10-11 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58016:8f44495db914 Date: 2012-10-11 18:43 +0200 http://bitbucket.org/pypy/pypy/changeset/8f44495db914/ Log:Fix tests for _cffi_backend diff --git a/pypy/module/_cffi_backend/misc.py b/pypy/module/_cffi_backend/misc.py --- a/pypy/module/_

[pypy-commit] pypy translation-cleanup: Raise FlowingError for run-time UnboundLocalError

2012-10-11 Thread rlamy
Author: Ronan Lamy Branch: translation-cleanup Changeset: r58015:76950b0447c5 Date: 2012-10-11 14:39 +0100 http://bitbucket.org/pypy/pypy/changeset/76950b0447c5/ Log:Raise FlowingError for run-time UnboundLocalError diff --git a/pypy/objspace/flow/flowcontext.py b/pypy/objspace/flow/flowcon

[pypy-commit] pypy kill-someobject: (arigo, fijal) fix the annotation of isinstance

2012-10-11 Thread fijal
Author: Maciej Fijalkowski Branch: kill-someobject Changeset: r58013:99362c4bde4d Date: 2012-10-11 20:12 +0200 http://bitbucket.org/pypy/pypy/changeset/99362c4bde4d/ Log:(arigo, fijal) fix the annotation of isinstance diff --git a/pypy/annotation/builtin.py b/pypy/annotation/builtin.py --- a

[pypy-commit] pypy kill-someobject: fix continuation

2012-10-11 Thread fijal
Author: Maciej Fijalkowski Branch: kill-someobject Changeset: r58012:f346535f69fa Date: 2012-10-11 10:05 +0200 http://bitbucket.org/pypy/pypy/changeset/f346535f69fa/ Log:fix continuation diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py --- a/pypy/interpreter/b

[pypy-commit] pypy kill-someobject: fix cffi backend tests

2012-10-11 Thread fijal
Author: Maciej Fijalkowski Branch: kill-someobject Changeset: r58011:95c6721ee480 Date: 2012-10-11 09:42 +0200 http://bitbucket.org/pypy/pypy/changeset/95c6721ee480/ Log:fix cffi backend tests diff --git a/pypy/module/_cffi_backend/test/test_c.py b/pypy/module/_cffi_backend/test/test_c.py -

[pypy-commit] pypy kill-someobject: merge

2012-10-11 Thread fijal
Author: Maciej Fijalkowski Branch: kill-someobject Changeset: r58014:875dd99dd21d Date: 2012-10-11 20:13 +0200 http://bitbucket.org/pypy/pypy/changeset/875dd99dd21d/ Log:merge diff --git a/pypy/rpython/llinterp.py b/pypy/rpython/llinterp.py --- a/pypy/rpython/llinterp.py +++ b/pypy/rpython/l

[pypy-commit] extradoc extradoc: typo

2012-10-11 Thread bivab
Author: David Schneider Branch: extradoc Changeset: r4848:5321fa88c545 Date: 2012-10-11 11:44 -0300 http://bitbucket.org/pypy/extradoc/changeset/5321fa88c545/ Log:typo diff --git a/talk/vmil2012/presentation/talk.tex b/talk/vmil2012/presentation/talk.tex --- a/talk/vmil2012/presentation/tal

[pypy-commit] extradoc extradoc: typo

2012-10-11 Thread bivab
Author: David Schneider Branch: extradoc Changeset: r4847:9e013a7e52b9 Date: 2012-10-11 11:42 -0300 http://bitbucket.org/pypy/extradoc/changeset/9e013a7e52b9/ Log:typo diff --git a/talk/vmil2012/presentation/talk.tex b/talk/vmil2012/presentation/talk.tex --- a/talk/vmil2012/presentation/tal

[pypy-commit] extradoc extradoc: fill the slides with a first rough draft

2012-10-11 Thread cfbolz
Author: Carl Friedrich Bolz Branch: extradoc Changeset: r4846:cfdba0fcd517 Date: 2012-10-11 14:07 +0200 http://bitbucket.org/pypy/extradoc/changeset/cfdba0fcd517/ Log:fill the slides with a first rough draft diff --git a/talk/vmil2012/presentation/talk.tex b/talk/vmil2012/presentation/talk.

[pypy-commit] pypy kill-someobject: kill some more pyobj related code

2012-10-11 Thread alex_gaynor
Author: Alex Gaynor Branch: kill-someobject Changeset: r58010:95aad8cc8f1d Date: 2012-10-11 04:31 -0700 http://bitbucket.org/pypy/pypy/changeset/95aad8cc8f1d/ Log:kill some more pyobj related code diff --git a/pypy/rpython/llinterp.py b/pypy/rpython/llinterp.py --- a/pypy/rpython/llinterp.py

[pypy-commit] pypy translation-cleanup: Don't wrap closure vars in Cell objects

2012-10-11 Thread rlamy
Author: Ronan Lamy Branch: translation-cleanup Changeset: r58008:4ef541073dfa Date: 2012-10-11 06:16 +0100 http://bitbucket.org/pypy/pypy/changeset/4ef541073dfa/ Log:Don't wrap closure vars in Cell objects diff --git a/pypy/objspace/flow/bytecode.py b/pypy/objspace/flow/bytecode.py --- a/pyp

[pypy-commit] pypy translation-cleanup: cleanup imports

2012-10-11 Thread rlamy
Author: Ronan Lamy Branch: translation-cleanup Changeset: r58009:d0b2441778aa Date: 2012-10-11 06:25 +0100 http://bitbucket.org/pypy/pypy/changeset/d0b2441778aa/ Log:cleanup imports diff --git a/pypy/objspace/flow/bytecode.py b/pypy/objspace/flow/bytecode.py --- a/pypy/objspace/flow/bytecode

[pypy-commit] pypy translation-cleanup: Kill HostCode.co_cellvars

2012-10-11 Thread rlamy
Author: Ronan Lamy Branch: translation-cleanup Changeset: r58007:cee5218b458b Date: 2012-10-11 05:40 +0100 http://bitbucket.org/pypy/pypy/changeset/cee5218b458b/ Log:Kill HostCode.co_cellvars diff --git a/pypy/objspace/flow/bytecode.py b/pypy/objspace/flow/bytecode.py --- a/pypy/objspace/flo

[pypy-commit] pypy kill-someobject: fix test_descriptor

2012-10-11 Thread fijal
Author: Maciej Fijalkowski Branch: kill-someobject Changeset: r58006:5ef114da6d50 Date: 2012-10-11 09:40 +0200 http://bitbucket.org/pypy/pypy/changeset/5ef114da6d50/ Log:fix test_descriptor diff --git a/pypy/interpreter/function.py b/pypy/interpreter/function.py --- a/pypy/interpreter/functi

[pypy-commit] pypy default: fix for failing test

2012-10-11 Thread mattip
Author: mattip Branch: Changeset: r58005:a7f5a71b05d1 Date: 2012-10-11 07:36 +0200 http://bitbucket.org/pypy/pypy/changeset/a7f5a71b05d1/ Log:fix for failing test diff --git a/pypy/module/micronumpy/interp_ufuncs.py b/pypy/module/micronumpy/interp_ufuncs.py --- a/pypy/module/micronumpy/int