[pypy-commit] pypy default: cleanup (forgot to commit this a while back)

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: Changeset: r72651:a6963d0635d1 Date: 2014-08-01 17:35 -0700 http://bitbucket.org/pypy/pypy/changeset/a6963d0635d1/ Log:cleanup (forgot to commit this a while back) diff --git a/pypy/module/__builtin__/app_inspect.py b/pypy/module/__builtin__/app_inspect.py ---

[pypy-commit] pypy py3.3: merge py3k

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: py3.3 Changeset: r72653:777f424bdd72 Date: 2014-08-01 18:11 -0700 http://bitbucket.org/pypy/pypy/changeset/777f424bdd72/ Log:merge py3k diff --git a/pypy/interpreter/test/test_typedef.py b/pypy/interpreter/test/test_typedef.py --- a/pypy/interpreter/test/test_t

[pypy-commit] pypy py3k: merge default

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r72652:20b6589f4314 Date: 2014-08-01 18:05 -0700 http://bitbucket.org/pypy/pypy/changeset/20b6589f4314/ Log:merge default diff --git a/pypy/module/__builtin__/app_inspect.py b/pypy/module/__builtin__/app_inspect.py --- a/pypy/module/__builtin__/

[pypy-commit] pypy py3k: n/a to py3

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r72650:11b895f1f0af Date: 2014-08-01 17:35 -0700 http://bitbucket.org/pypy/pypy/changeset/11b895f1f0af/ Log:n/a to py3 diff --git a/pypy/interpreter/test/test_typedef.py b/pypy/interpreter/test/test_typedef.py --- a/pypy/interpreter/test/test_ty

[pypy-commit] pypy py3.3: fix translation (newlist vs wrap) and match cpython a bit more

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: py3.3 Changeset: r72649:70a5990e4f23 Date: 2014-08-01 17:11 -0700 http://bitbucket.org/pypy/pypy/changeset/70a5990e4f23/ Log:fix translation (newlist vs wrap) and match cpython a bit more diff --git a/pypy/interpreter/module.py b/pypy/interpreter/module.py --- a

[pypy-commit] pypy py3.3: factor dir() built-in out into object, type and module methods

2014-08-01 Thread numerodix
Author: Martin Matusiak Branch: py3.3 Changeset: r72641:2bdf0e894a85 Date: 2014-07-29 19:44 +0200 http://bitbucket.org/pypy/pypy/changeset/2bdf0e894a85/ Log:factor dir() built-in out into object, type and module methods This happened in bugs.python.org/issue12166 diff --git a/pypy/i

[pypy-commit] pypy py3.3: merging

2014-08-01 Thread numerodix
Author: Martin Matusiak Branch: py3.3 Changeset: r72647:80b1862342a0 Date: 2014-08-01 21:17 +0200 http://bitbucket.org/pypy/pypy/changeset/80b1862342a0/ Log:merging diff --git a/pypy/interpreter/astcompiler/validate.py b/pypy/interpreter/astcompiler/validate.py --- a/pypy/interpreter/astcom

[pypy-commit] pypy py3.3: Merged in numerodix/pypy/py3.3 (pull request #255)

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: py3.3 Changeset: r72648:49884de0d7c3 Date: 2014-08-01 15:39 -0700 http://bitbucket.org/pypy/pypy/changeset/49884de0d7c3/ Log:Merged in numerodix/pypy/py3.3 (pull request #255) factor dir() built-in out into object, type and module methods diff --git a/p

[pypy-commit] pypy py3.3: merging

2014-08-01 Thread numerodix
Author: Martin Matusiak Branch: py3.3 Changeset: r72645:7a470162ff0e Date: 2014-07-31 19:13 +0200 http://bitbucket.org/pypy/pypy/changeset/7a470162ff0e/ Log:merging diff --git a/pypy/interpreter/astcompiler/validate.py b/pypy/interpreter/astcompiler/validate.py --- a/pypy/interpreter/astcom

[pypy-commit] pypy py3.3: omit sorting the items in dir/type/module __dir__, like cpython does

2014-08-01 Thread numerodix
Author: Martin Matusiak Branch: py3.3 Changeset: r72646:743d934f01f7 Date: 2014-08-01 21:16 +0200 http://bitbucket.org/pypy/pypy/changeset/743d934f01f7/ Log:omit sorting the items in dir/type/module __dir__, like cpython does diff --git a/pypy/interpreter/module.py b/pypy/interpreter/module.

[pypy-commit] pypy py3.3: prefer use of __mro__ instead of recursing the inheritance hierarchy

2014-08-01 Thread numerodix
Author: Martin Matusiak Branch: py3.3 Changeset: r72642:239d45aea639 Date: 2014-07-29 20:58 +0200 http://bitbucket.org/pypy/pypy/changeset/239d45aea639/ Log:prefer use of __mro__ instead of recursing the inheritance hierarchy diff --git a/pypy/objspace/std/objecttype.py b/pypy/objspace/std/o

[pypy-commit] pypy py3.3: Merged pypy/pypy/py3.3 into py3.3

2014-08-01 Thread numerodix
Author: Martin Matusiak Branch: py3.3 Changeset: r72643:61ea6233fd47 Date: 2014-07-30 21:05 +0200 http://bitbucket.org/pypy/pypy/changeset/61ea6233fd47/ Log:Merged pypy/pypy/py3.3 into py3.3 diff --git a/lib-python/3/test/test_builtin.py b/lib-python/3/test/test_builtin.py --- a/lib-python/

[pypy-commit] pypy py3.3: use space.call_method over w_result.sort

2014-08-01 Thread numerodix
Author: Martin Matusiak Branch: py3.3 Changeset: r72644:2c73a529647b Date: 2014-07-31 18:35 +0200 http://bitbucket.org/pypy/pypy/changeset/2c73a529647b/ Log:use space.call_method over w_result.sort diff --git a/pypy/interpreter/module.py b/pypy/interpreter/module.py --- a/pypy/interpreter/mo

[pypy-commit] pypy py3k: merge default

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r72637:33d48832dcfd Date: 2014-08-01 15:21 -0700 http://bitbucket.org/pypy/pypy/changeset/33d48832dcfd/ Log:merge default diff --git a/pypy/doc/coding-guide.rst b/pypy/doc/coding-guide.rst --- a/pypy/doc/coding-guide.rst +++ b/pypy/doc/coding-gui

[pypy-commit] pypy py3.3: add SimpleNamespace.__repr__

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: py3.3 Changeset: r72640:6b3258e026e3 Date: 2014-08-01 15:22 -0700 http://bitbucket.org/pypy/pypy/changeset/6b3258e026e3/ Log:add SimpleNamespace.__repr__ diff --git a/pypy/module/sys/app.py b/pypy/module/sys/app.py --- a/pypy/module/sys/app.py +++ b/pypy/module/

[pypy-commit] pypy py3k: issue1804: fix nonlocal decls not being added to free_vars

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r72638:1f716034739d Date: 2014-08-01 15:21 -0700 http://bitbucket.org/pypy/pypy/changeset/1f716034739d/ Log:issue1804: fix nonlocal decls not being added to free_vars diff --git a/pypy/interpreter/astcompiler/symtable.py b/pypy/interpreter/astco

[pypy-commit] pypy py3.3: merge py3k

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: py3.3 Changeset: r72639:64027c84d8c6 Date: 2014-08-01 15:21 -0700 http://bitbucket.org/pypy/pypy/changeset/64027c84d8c6/ Log:merge py3k diff --git a/pypy/doc/coding-guide.rst b/pypy/doc/coding-guide.rst --- a/pypy/doc/coding-guide.rst +++ b/pypy/doc/coding-guide

[pypy-commit] pypy default: fix bound classmethods lacking an im_class

2014-08-01 Thread pjenvey
Author: Philip Jenvey Branch: Changeset: r72636:8b19970c9881 Date: 2014-08-01 14:54 -0700 http://bitbucket.org/pypy/pypy/changeset/8b19970c9881/ Log:fix bound classmethods lacking an im_class diff --git a/pypy/interpreter/function.py b/pypy/interpreter/function.py --- a/pypy/interpreter/fun

[pypy-commit] pypy default: transplant 7cb52d2a97f0

2014-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r72635:09f1776bf62a Date: 2014-08-01 19:41 +0200 http://bitbucket.org/pypy/pypy/changeset/09f1776bf62a/ Log:transplant 7cb52d2a97f0 diff --git a/pypy/doc/coding-guide.rst b/pypy/doc/coding-guide.rst --- a/pypy/doc/coding-guide.rst +++ b/pypy/doc/coding-

[pypy-commit] pypy improve-docs-fixes: Close branch improve-docs-fixes

2014-08-01 Thread mjacob
Author: Manuel Jacob Branch: improve-docs-fixes Changeset: r72634:61b902f1f07b Date: 2014-08-01 14:45 +0200 http://bitbucket.org/pypy/pypy/changeset/61b902f1f07b/ Log:Close branch improve-docs-fixes ___ pypy-commit mailing list pypy-commit@python.o

[pypy-commit] pypy improve-docs-fixes: fix typo

2014-08-01 Thread numerodix
Author: Martin Matusiak Branch: improve-docs-fixes Changeset: r72632:98cb8999d9f7 Date: 2014-07-31 21:18 +0200 http://bitbucket.org/pypy/pypy/changeset/98cb8999d9f7/ Log:fix typo diff --git a/pypy/doc/coding-guide.rst b/pypy/doc/coding-guide.rst --- a/pypy/doc/coding-guide.rst +++ b/pypy/doc

[pypy-commit] pypy improve-docs-fixes: fix typos

2014-08-01 Thread numerodix
Author: Martin Matusiak Branch: improve-docs-fixes Changeset: r72631:91450a0f17bc Date: 2014-07-31 20:58 +0200 http://bitbucket.org/pypy/pypy/changeset/91450a0f17bc/ Log:fix typos diff --git a/pypy/doc/coding-guide.rst b/pypy/doc/coding-guide.rst --- a/pypy/doc/coding-guide.rst +++ b/pypy/do

[pypy-commit] pypy improve-docs: Merged in numerodix/pypy/improve-docs-fixes (pull request #259)

2014-08-01 Thread mjacob
Author: Manuel Jacob Branch: improve-docs Changeset: r72633:7cb52d2a97f0 Date: 2014-08-01 14:45 +0200 http://bitbucket.org/pypy/pypy/changeset/7cb52d2a97f0/ Log:Merged in numerodix/pypy/improve-docs-fixes (pull request #259) fix typos diff --git a/pypy/doc/coding-guide.rst b/pypy/do