[pypy-commit] pypy non-null-threadstate: (fijal, glyph, exarkun) Encapsulate cpyext tstate cleanup for tests in a method; fix a bug in that cleanup that made it hard to have more than a single unit te

2012-03-08 Thread exarkun
Author: Jean-Paul Calderone Branch: non-null-threadstate Changeset: r53280:554e5a0f831e Date: 2012-03-08 23:19 -0800 http://bitbucket.org/pypy/pypy/changeset/554e5a0f831e/ Log:(fijal, glyph, exarkun) Encapsulate cpyext tstate cleanup for tests in a method; fix a bug in that cleanup th

[pypy-commit] pypy non-null-threadstate: Some tests that do not work. At all. Wtf?

2012-03-08 Thread exarkun
Author: Jean-Paul Calderone Branch: non-null-threadstate Changeset: r53279:3dd1ad080dcd Date: 2012-03-08 22:23 -0800 http://bitbucket.org/pypy/pypy/changeset/3dd1ad080dcd/ Log:Some tests that do not work. At all. Wtf? diff --git a/pypy/module/cpyext/pystate.py b/pypy/module/cpyext/pystate.py

[pypy-commit] pypy reflex-support: prevent infinite recursion on namespace lookups

2012-03-08 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r53277:94adcd5155d2 Date: 2012-03-08 13:41 -0800 http://bitbucket.org/pypy/pypy/changeset/94adcd5155d2/ Log:prevent infinite recursion on namespace lookups diff --git a/pypy/module/cppyy/pythonify.py b/pypy/module/cppyy/pythonify.py ---

[pypy-commit] pypy reflex-support: ptr-ptr and ptr-ref return types as ptr returns

2012-03-08 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r53278:58ff96db778c Date: 2012-03-08 16:50 -0800 http://bitbucket.org/pypy/pypy/changeset/58ff96db778c/ Log:ptr-ptr and ptr-ref return types as ptr returns diff --git a/pypy/module/cppyy/executor.py b/pypy/module/cppyy/executor.py --- a

[pypy-commit] pypy reflex-support: lazy setup of function returns to prevent hitting the recursion limits when class return types are created

2012-03-08 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r53276:d905100df05f Date: 2012-03-08 10:50 -0800 http://bitbucket.org/pypy/pypy/changeset/d905100df05f/ Log:lazy setup of function returns to prevent hitting the recursion limits when class return types are created diff --git a/

[pypy-commit] pypy non-null-threadstate: Start trying to unit test PyEval_SaveThread, but mostly fail so far

2012-03-08 Thread exarkun
Author: Jean-Paul Calderone Branch: non-null-threadstate Changeset: r53275:bfc2facb5e36 Date: 2012-03-08 14:41 -0800 http://bitbucket.org/pypy/pypy/changeset/bfc2facb5e36/ Log:Start trying to unit test PyEval_SaveThread, but mostly fail so far diff --git a/pypy/module/cpyext/test/test_pystat

[pypy-commit] pypy default: Fix typo in csv module.

2012-03-08 Thread onyxfish
Author: Christopher Groskopf Branch: Changeset: r53273:000d6f1cb12d Date: 2012-03-08 13:23 -0600 http://bitbucket.org/pypy/pypy/changeset/000d6f1cb12d/ Log:Fix typo in csv module. diff --git a/lib_pypy/_csv.py b/lib_pypy/_csv.py --- a/lib_pypy/_csv.py +++ b/lib_pypy/_csv.py @@ -414,7 +414,7

[pypy-commit] [OPEN] Pull request #30 for pypy/pypy: Fix typo in csv module.

2012-03-08 Thread Bitbucket
A new pull request has been opened by Christopher Groskopf. onyxfish/pypy has changes to be pulled into pypy/pypy. https://bitbucket.org/pypy/pypy/pull-request/30/fix-typo-in-csv-module Title: Fix typo in csv module. Changes to be pulled: -- This is an issue notification from bitbucket.org.

[pypy-commit] pypy default: (fijal, arigo)

2012-03-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r53272:d8c92dd23635 Date: 2012-03-08 10:50 -0800 http://bitbucket.org/pypy/pypy/changeset/d8c92dd23635/ Log:(fijal, arigo) Improve the error message in one annotation error case. diff --git a/pypy/annotation/classdef.py b/pypy/annotation/classd

[pypy-commit] Notification: pypy

2012-03-08 Thread Bitbucket
You have received a notification from Christopher Groskopf. Hi, I forked pypy. My fork is at https://bitbucket.org/onyxfish/pypy. -- Disable notifications at https://bitbucket.org/account/notifications/ ___ pypy-commit mailing list pypy-commit@python.or

[pypy-commit] extradoc extradoc: add a qualcomm talk

2012-03-08 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4138:aad87278e1d2 Date: 2012-03-08 09:38 -0800 http://bitbucket.org/pypy/extradoc/changeset/aad87278e1d2/ Log:add a qualcomm talk diff --git a/talk/pycon2012/qualcomm/Makefile b/talk/pycon2012/qualcomm/Makefile new file mode 100644 ---

[pypy-commit] pypy.org extradoc: Regenerate.

2012-03-08 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r341:96983be9602c Date: 2012-03-08 08:24 -0800 http://bitbucket.org/pypy/pypy.org/changeset/96983be9602c/ Log:Regenerate. diff --git a/numpydonate.html b/numpydonate.html --- a/numpydonate.html +++ b/numpydonate.html @@ -65,7 +65,7 @@ at the la

[pypy-commit] pypy.org extradoc: Fix some typos in source/tmdonate.txt.

2012-03-08 Thread larstiq
Author: Wouter van Heyst Branch: extradoc Changeset: r340:3928f55afd97 Date: 2012-03-08 15:51 +0200 http://bitbucket.org/pypy/pypy.org/changeset/3928f55afd97/ Log:Fix some typos in source/tmdonate.txt. diff --git a/source/tmdonate.txt b/source/tmdonate.txt --- a/source/tmdonate.txt +++ b/sou

[pypy-commit] pypy reflex-support: prevent infinite recursion on unnamed enums

2012-03-08 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r53271:16ca2f015922 Date: 2012-03-07 23:52 -0800 http://bitbucket.org/pypy/pypy/changeset/16ca2f015922/ Log:prevent infinite recursion on unnamed enums diff --git a/pypy/module/cppyy/src/cintcwrapper.cxx b/pypy/module/cppyy/src/cintcwr

[pypy-commit] [OPEN] Pull request #2 for pypy/pypy.org: Fix some typos in source/tmdonate.txt.

2012-03-08 Thread Bitbucket
A new pull request has been opened by larstiq. larstiq/pypy.org has changes to be pulled into pypy/pypy.org. https://bitbucket.org/pypy/pypy.org/pull-request/2/fix-some-typos-in-source-tmdonatetxt Title: Fix some typos in source/tmdonate.txt. Some cleanups for http://pypy.org/tmdonate.html repo

[pypy-commit] Notification: pypy.org

2012-03-08 Thread Bitbucket
You have received a notification from larstiq. Hi, I forked pypy.org. My fork is at https://bitbucket.org/larstiq/pypy.org. -- Disable notifications at https://bitbucket.org/account/notifications/ ___ pypy-commit mailing list pypy-commit@python.org http

[pypy-commit] pypy ppc-jit-backend: use less distinctions of cases to get CPU class

2012-03-08 Thread hager
Author: hager Branch: ppc-jit-backend Changeset: r53270:bf8ad803c74a Date: 2012-03-08 11:48 +0100 http://bitbucket.org/pypy/pypy/changeset/bf8ad803c74a/ Log:use less distinctions of cases to get CPU class diff --git a/pypy/jit/backend/detect_cpu.py b/pypy/jit/backend/detect_cpu.py --- a/pypy