[pypy-commit] pypy default: rework naming of loops/bridges. jitviewer needs updating

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r46137:d41794f10532 Date: 2011-08-01 13:31 +0200 http://bitbucket.org/pypy/pypy/changeset/d41794f10532/ Log:rework naming of loops/bridges. jitviewer needs updating diff --git a/pypy/jit/backend/x86/assembler.py b/pypy/jit/backend/x86/assembler

[pypy-commit] pypy inline-dict-ops: missing import

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: inline-dict-ops Changeset: r46136:902125543062 Date: 2011-07-31 23:28 +0200 http://bitbucket.org/pypy/pypy/changeset/902125543062/ Log:missing import diff --git a/pypy/rpython/lltypesystem/rdict.py b/pypy/rpython/lltypesystem/rdict.py --- a/pypy/rpython/ll

[pypy-commit] pypy default: merge

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r46138:650824ea845a Date: 2011-08-01 13:32 +0200 http://bitbucket.org/pypy/pypy/changeset/650824ea845a/ Log:merge diff --git a/pypy/module/array/interp_array.py b/pypy/module/array/interp_array.py --- a/pypy/module/array/interp_array.py +++ b/p

[pypy-commit] pypy jit-singlefloat: Close branch about to be merged.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: jit-singlefloat Changeset: r46139:d1844205ae46 Date: 2011-08-01 14:21 +0200 http://bitbucket.org/pypy/pypy/changeset/d1844205ae46/ Log:Close branch about to be merged. ___ pypy-commit mailing list pypy-commit@python.org h

[pypy-commit] buildbot default: bbhook: warning comment and parameter fix for the host param of app.run

2011-08-01 Thread RonnyPfannschmidt
Author: Ronny Pfannschmidt Branch: Changeset: r544:8f7057902356 Date: 2011-08-01 12:28 +0200 http://bitbucket.org/pypy/buildbot/changeset/8f7057902356/ Log:bbhook: warning comment and parameter fix for the host param of app.run diff --git a/bbhook/run.py b/bbhook/run.py --- a/bbhook

[pypy-commit] pypy default: Backout changesets 1c74e688ab5b, 73cd9edd4a03, ae9804777ad3,

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46141:5e69647bc0c2 Date: 2011-08-01 14:44 +0200 http://bitbucket.org/pypy/pypy/changeset/5e69647bc0c2/ Log:Backout changesets 1c74e688ab5b, 73cd9edd4a03, ae9804777ad3, a5246fac14ee. diff --git a/pypy/module/_rawffi/interp_rawffi.py b/pypy/modu

[pypy-commit] pypy default: Add an explicit flag 'add_memory_pressure=True' to the

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46142:5282016589ed Date: 2011-08-01 15:18 +0200 http://bitbucket.org/pypy/pypy/changeset/5282016589ed/ Log:Add an explicit flag 'add_memory_pressure=True' to the raw-flavored malloc(). When we set it, the minimark GC will count the allocated

[pypy-commit] pypy default: Minor simplification of the interface.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46144:801f2ddd52be Date: 2011-07-31 18:19 +0200 http://bitbucket.org/pypy/pypy/changeset/801f2ddd52be/ Log:Minor simplification of the interface. diff --git a/pypy/module/_multibytecodec/c_codecs.py b/pypy/module/_multibytecodec/c_codecs.py --- a/pypy

[pypy-commit] pypy default: Incremental support: keep the decodebuf around several calls to

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46143:f040a9a3f4fb Date: 2011-07-31 18:16 +0200 http://bitbucket.org/pypy/pypy/changeset/f040a9a3f4fb/ Log:Incremental support: keep the decodebuf around several calls to decodeex(), and don't complain when getting MBERR_TOOFEW. diff --git a/py

[pypy-commit] pypy default: MultibyteIncrementalDecoder.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46145:8949a315da3f Date: 2011-07-31 18:34 +0200 http://bitbucket.org/pypy/pypy/changeset/8949a315da3f/ Log:MultibyteIncrementalDecoder. diff --git a/pypy/module/_multibytecodec/__init__.py b/pypy/module/_multibytecodec/__init__.py --- a/pypy/module/_m

[pypy-commit] pypy default: Test and fix for reset().

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46146:368b4ab4862f Date: 2011-07-31 18:37 +0200 http://bitbucket.org/pypy/pypy/changeset/368b4ab4862f/ Log:Test and fix for reset(). diff --git a/pypy/module/_multibytecodec/interp_incremental.py b/pypy/module/_multibytecodec/interp_incremental.py ---

[pypy-commit] pypy default: Support custom errors.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46147:e1a78e27a180 Date: 2011-07-31 18:44 +0200 http://bitbucket.org/pypy/pypy/changeset/e1a78e27a180/ Log:Support custom errors. diff --git a/pypy/module/_multibytecodec/interp_incremental.py b/pypy/module/_multibytecodec/interp_incremental.py --- a/

[pypy-commit] pypy default: Incremental encoder, first try.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46148:67f047ef8c7a Date: 2011-08-01 13:16 +0200 http://bitbucket.org/pypy/pypy/changeset/67f047ef8c7a/ Log:Incremental encoder, first try. diff --git a/pypy/module/_multibytecodec/__init__.py b/pypy/module/_multibytecodec/__init__.py --- a/pypy/module

[pypy-commit] pypy default: Tests for IncrementalEncoder. Pass, thanks to sharing of code.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46149:bcc5502ec625 Date: 2011-08-01 13:28 +0200 http://bitbucket.org/pypy/pypy/changeset/bcc5502ec625/ Log:Tests for IncrementalEncoder. Pass, thanks to sharing of code. diff --git a/pypy/module/_multibytecodec/test/test_app_incremental.py b/pypy/modu

[pypy-commit] pypy default: A quick writing and quick testing of MultibyteStream{Reader, Writer}.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46150:69fabe6fa63e Date: 2011-08-01 14:15 +0200 http://bitbucket.org/pypy/pypy/changeset/69fabe6fa63e/ Log:A quick writing and quick testing of MultibyteStream{Reader,Writer}. diff --git a/pypy/module/_multibytecodec/app_multibytecodec.py b/pypy/modul

[pypy-commit] pypy default: Don't do a lookup based on 'self' here.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46151:2cd06a7a2bdb Date: 2011-08-01 15:42 +0200 http://bitbucket.org/pypy/pypy/changeset/2cd06a7a2bdb/ Log:Don't do a lookup based on 'self' here. Seems to be needed for tests. diff --git a/pypy/module/_multibytecodec/app_multibytecodec.py b/p

[pypy-commit] pypy default: Test and fix.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46152:9aa3003707ff Date: 2011-08-01 15:45 +0200 http://bitbucket.org/pypy/pypy/changeset/9aa3003707ff/ Log:Test and fix. diff --git a/pypy/module/_multibytecodec/app_multibytecodec.py b/pypy/module/_multibytecodec/app_multibytecodec.py --- a/pypy/modu

[pypy-commit] pypy default: Add missing 'usemodules'.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46153:75cf4d4122bc Date: 2011-08-01 15:54 +0200 http://bitbucket.org/pypy/pypy/changeset/75cf4d4122bc/ Log:Add missing 'usemodules'. diff --git a/lib-python/conftest.py b/lib-python/conftest.py --- a/lib-python/conftest.py +++ b/lib-python/conftest.py

[pypy-commit] pypy default: merge heads

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46154:cd97971c87bb Date: 2011-08-01 16:18 +0200 http://bitbucket.org/pypy/pypy/changeset/cd97971c87bb/ Log:merge heads diff --git a/lib-python/conftest.py b/lib-python/conftest.py --- a/lib-python/conftest.py +++ b/lib-python/conftest.py @@ -154,18 +15

[pypy-commit] pypy unroll-if-alt: revert this; the implicit specialization of methods conflicts with mine

2011-08-01 Thread gutworth
Author: Benjamin Peterson Branch: unroll-if-alt Changeset: r46155:0d17eee15160 Date: 2011-08-01 10:08 -0500 http://bitbucket.org/pypy/pypy/changeset/0d17eee15160/ Log:revert this; the implicit specialization of methods conflicts with mine diff --git a/pypy/objspace/std/newformat.py b

[pypy-commit] pypy.org extradoc: add a button id

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r218:7856e15ac7d6 Date: 2011-08-01 17:16 +0200 http://bitbucket.org/pypy/pypy.org/changeset/7856e15ac7d6/ Log:add a button id diff --git a/source/sponsor.txt b/source/sponsor.txt --- a/source/sponsor.txt +++ b/source/sponsor.txt @@ -28,6

[pypy-commit] pypy.org extradoc: link

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r219:e18bcfc19d7b Date: 2011-08-01 17:17 +0200 http://bitbucket.org/pypy/pypy.org/changeset/e18bcfc19d7b/ Log:link diff --git a/source/sponsor.txt b/source/sponsor.txt --- a/source/sponsor.txt +++ b/source/sponsor.txt @@ -32,5 +32,5 @@

[pypy-commit] pypy.org extradoc: merge

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r220:41d5a0a92d16 Date: 2011-08-01 17:17 +0200 http://bitbucket.org/pypy/pypy.org/changeset/41d5a0a92d16/ Log:merge diff --git a/source/sponsor.txt b/source/sponsor.txt --- a/source/sponsor.txt +++ b/source/sponsor.txt @@ -7,10 +7,10 @@

[pypy-commit] pypy.org extradoc: regen and reset values to 0

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r221:24acd671ff2b Date: 2011-08-01 17:19 +0200 http://bitbucket.org/pypy/pypy.org/changeset/24acd671ff2b/ Log:regen and reset values to 0 diff --git a/source/_layouts/sponsor.genshi b/source/_layouts/sponsor.genshi --- a/source/_layouts/

[pypy-commit] pypy.org extradoc: update to newer version

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r222:f010f2ca7a5a Date: 2011-08-01 17:21 +0200 http://bitbucket.org/pypy/pypy.org/changeset/f010f2ca7a5a/ Log:update to newer version diff --git a/source/sponsor.txt b/source/sponsor.txt --- a/source/sponsor.txt +++ b/source/sponsor.txt

[pypy-commit] pypy.org extradoc: another try

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r223:2612be1755b6 Date: 2011-08-01 17:22 +0200 http://bitbucket.org/pypy/pypy.org/changeset/2612be1755b6/ Log:another try diff --git a/source/sponsor.txt b/source/sponsor.txt --- a/source/sponsor.txt +++ b/source/sponsor.txt @@ -27,7 +27

[pypy-commit] pypy.org extradoc: update

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r224:e44e5a53718f Date: 2011-08-01 17:22 +0200 http://bitbucket.org/pypy/pypy.org/changeset/e44e5a53718f/ Log:update diff --git a/sponsor.html b/sponsor.html --- a/sponsor.html +++ b/sponsor.html @@ -68,7 +68,7 @@ EUR GBP - +

[pypy-commit] pypy.org extradoc: this is called quantity

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r225:41e6e5979cd8 Date: 2011-08-01 17:26 +0200 http://bitbucket.org/pypy/pypy.org/changeset/41e6e5979cd8/ Log:this is called quantity diff --git a/source/sponsor.txt b/source/sponsor.txt --- a/source/sponsor.txt +++ b/source/sponsor.txt

[pypy-commit] pypy default: test and fix for very large structure fields which were confused with bitfields

2011-08-01 Thread antocuni
Author: Antonio Cuni Branch: Changeset: r46156:91f0b4a3a000 Date: 2011-08-01 17:24 +0200 http://bitbucket.org/pypy/pypy/changeset/91f0b4a3a000/ Log:test and fix for very large structure fields which were confused with bitfields diff --git a/lib_pypy/_ctypes/structure.py b/lib_pypy/_

[pypy-commit] pypy.org extradoc: another attempt

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r226:51b057554833 Date: 2011-08-01 17:31 +0200 http://bitbucket.org/pypy/pypy.org/changeset/51b057554833/ Log:another attempt diff --git a/source/sponsor.txt b/source/sponsor.txt --- a/source/sponsor.txt +++ b/source/sponsor.txt @@ -21,7

[pypy-commit] pypy.org extradoc: another attempt

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r227:0c063698b2d4 Date: 2011-08-01 17:35 +0200 http://bitbucket.org/pypy/pypy.org/changeset/0c063698b2d4/ Log:another attempt diff --git a/source/sponsor.txt b/source/sponsor.txt --- a/source/sponsor.txt +++ b/source/sponsor.txt @@ -22,7

[pypy-commit] pypy.org extradoc: failing to understand why it does not work

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r228:02808bac539d Date: 2011-08-01 17:52 +0200 http://bitbucket.org/pypy/pypy.org/changeset/02808bac539d/ Log:failing to understand why it does not work diff --git a/source/sponsor.txt b/source/sponsor.txt --- a/source/sponsor.txt +++ b/

[pypy-commit] pypy default: Test and fix.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46157:04610dd29a59 Date: 2011-08-01 16:43 +0200 http://bitbucket.org/pypy/pypy/changeset/04610dd29a59/ Log:Test and fix. diff --git a/pypy/module/_multibytecodec/c_codecs.py b/pypy/module/_multibytecodec/c_codecs.py --- a/pypy/module/_multibytecodec/c

[pypy-commit] pypy default: Fix for the case of read(-1).

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46158:c5ebf30f4485 Date: 2011-08-01 16:51 +0200 http://bitbucket.org/pypy/pypy/changeset/c5ebf30f4485/ Log:Fix for the case of read(-1). diff --git a/pypy/module/_multibytecodec/app_multibytecodec.py b/pypy/module/_multibytecodec/app_multibytecodec.py

[pypy-commit] pypy default: Wrong, we can't say "final" in StreamWriter.write().

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46159:1a4938c4eb0a Date: 2011-08-01 17:46 +0200 http://bitbucket.org/pypy/pypy/changeset/1a4938c4eb0a/ Log:Wrong, we can't say "final" in StreamWriter.write(). diff --git a/pypy/module/_multibytecodec/app_multibytecodec.py b/pypy/module/_multibytecode

[pypy-commit] pypy default: Fix the test to properly close() the file.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46160:efee3187f6ff Date: 2011-08-01 17:50 +0200 http://bitbucket.org/pypy/pypy/changeset/efee3187f6ff/ Log:Fix the test to properly close() the file. diff --git a/lib-python/modified-2.7/test/test_multibytecodec.py b/lib-python/modified-2.7/test/test_

[pypy-commit] pypy default: merge heads

2011-08-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r46161:eb30a0ef328e Date: 2011-08-01 16:06 + http://bitbucket.org/pypy/pypy/changeset/eb30a0ef328e/ Log:merge heads diff --git a/lib_pypy/_ctypes/structure.py b/lib_pypy/_ctypes/structure.py --- a/lib_pypy/_ctypes/structure.py +++ b/lib_pypy/_ctypes

[pypy-commit] pypy ppc-jit-backend: Fixed bug in assembler code representation

2011-08-01 Thread hager
Author: hager Branch: ppc-jit-backend Changeset: r46162:fbfa8e46f34e Date: 2011-08-01 18:05 +0200 http://bitbucket.org/pypy/pypy/changeset/fbfa8e46f34e/ Log:Fixed bug in assembler code representation diff --git a/pypy/jit/backend/ppc/ppcgen/ppc_field.py b/pypy/jit/backend/ppc/ppcgen/ppc_fie

[pypy-commit] pypy ppc-jit-backend: Added some helper methods to Assembler class

2011-08-01 Thread hager
Author: hager Branch: ppc-jit-backend Changeset: r46163:816756135bd7 Date: 2011-08-01 18:06 +0200 http://bitbucket.org/pypy/pypy/changeset/816756135bd7/ Log:Added some helper methods to Assembler class diff --git a/pypy/jit/backend/ppc/ppcgen/assembler.py b/pypy/jit/backend/ppc/ppcgen/assem

[pypy-commit] pypy ppc-jit-backend: Made some refactorings in classes PPC_64_CPU and PPCBuilder.

2011-08-01 Thread hager
Author: hager Branch: ppc-jit-backend Changeset: r46164:e6405645f87c Date: 2011-08-01 18:08 +0200 http://bitbucket.org/pypy/pypy/changeset/e6405645f87c/ Log:Made some refactorings in classes PPC_64_CPU and PPCBuilder. - PPCBuilder: Added more methods, don't inherit from Block

[pypy-commit] jitviewer default: fix counts of loops

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r167:647ec61d599d Date: 2011-08-01 18:12 +0200 http://bitbucket.org/pypy/jitviewer/changeset/647ec61d599d/ Log:fix counts of loops diff --git a/_jitviewer/parser.py b/_jitviewer/parser.py --- a/_jitviewer/parser.py +++ b/_jitviewer/parser.py @@

[pypy-commit] pypy ppc-jit-backend: Skip the float tests properly, for all CPUs not supporting floats.

2011-08-01 Thread arigo
Author: Armin Rigo Branch: ppc-jit-backend Changeset: r46165:3cd8bf9a25c0 Date: 2011-08-01 18:26 +0200 http://bitbucket.org/pypy/pypy/changeset/3cd8bf9a25c0/ Log:Skip the float tests properly, for all CPUs not supporting floats. diff --git a/pypy/jit/backend/ppc/ppcgen/test/test_runner.py b

[pypy-commit] pypy ppc-jit-backend: merge heads

2011-08-01 Thread arigo
Author: Armin Rigo Branch: ppc-jit-backend Changeset: r46166:611d19a80e91 Date: 2011-08-01 18:27 +0200 http://bitbucket.org/pypy/pypy/changeset/611d19a80e91/ Log:merge heads diff --git a/pypy/jit/backend/ppc/ppcgen/assembler.py b/pypy/jit/backend/ppc/ppcgen/assembler.py --- a/pypy/jit/backe

[pypy-commit] jitviewer default: fix for bridges

2011-08-01 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r168:b870541f1dc3 Date: 2011-08-01 18:42 +0200 http://bitbucket.org/pypy/jitviewer/changeset/b870541f1dc3/ Log:fix for bridges diff --git a/_jitviewer/templates/loop.html b/_jitviewer/templates/loop.html --- a/_jitviewer/templates/loop.html +++

[pypy-commit] pypy unroll-if-alt: base call_location specialization off the call operation

2011-08-01 Thread gutworth
Author: Benjamin Peterson Branch: unroll-if-alt Changeset: r46167:8666774c627d Date: 2011-08-01 15:32 -0500 http://bitbucket.org/pypy/pypy/changeset/8666774c627d/ Log:base call_location specialization off the call operation diff --git a/pypy/annotation/annrpython.py b/pypy/annotation/annrpyt

[pypy-commit] pypy unroll-if-alt: merged upstream.

2011-08-01 Thread alex_gaynor
Author: Alex Gaynor Branch: unroll-if-alt Changeset: r46169:c534dc115a6c Date: 2011-08-01 14:02 -0700 http://bitbucket.org/pypy/pypy/changeset/c534dc115a6c/ Log:merged upstream. diff --git a/pypy/annotation/annrpython.py b/pypy/annotation/annrpython.py --- a/pypy/annotation/annrpython.py +++

[pypy-commit] pypy unroll-if-alt: bad things happen if this None

2011-08-01 Thread gutworth
Author: Benjamin Peterson Branch: unroll-if-alt Changeset: r46170:29ff9dcb475b Date: 2011-08-01 16:16 -0500 http://bitbucket.org/pypy/pypy/changeset/29ff9dcb475b/ Log:bad things happen if this None diff --git a/pypy/annotation/specialize.py b/pypy/annotation/specialize.py --- a/pypy/annotati

[pypy-commit] pypy unroll-if-alt: Fix this test, now that the call is hoisted out of the loop.

2011-08-01 Thread alex_gaynor
Author: Alex Gaynor Branch: unroll-if-alt Changeset: r46172:636471d78cf4 Date: 2011-08-01 15:00 -0700 http://bitbucket.org/pypy/pypy/changeset/636471d78cf4/ Log:Fix this test, now that the call is hoisted out of the loop. diff --git a/pypy/module/pypyjit/test_pypy_c/test_containers.py b/pyp

[pypy-commit] pypy unroll-if-alt: merged upstream.

2011-08-01 Thread alex_gaynor
Author: Alex Gaynor Branch: unroll-if-alt Changeset: r46173:9aa08c348faa Date: 2011-08-01 15:00 -0700 http://bitbucket.org/pypy/pypy/changeset/9aa08c348faa/ Log:merged upstream. diff --git a/pypy/annotation/specialize.py b/pypy/annotation/specialize.py --- a/pypy/annotation/specialize.py +++

[pypy-commit] [REJECTED] Pull request #4 for pypy: trigonometric ufuncs

2011-08-01 Thread Bitbucket
Pull request #4 has been rejected by Alex Gaynor. / had changes to be pulled into pypy/pypy. https://bitbucket.org/pypy/pypy/pull-request/4/trigonometric-ufuncs I think this was merged alreayd, and the source repo was deleted. The pull request has been closed. -- This is an issue notification

[pypy-commit] pypy numpy-dtype: Added simple dtypes. Still needs a lot of work.

2011-08-01 Thread justinpeel
Author: Justin Peel Branch: numpy-dtype Changeset: r46174:f0e8e21ec01c Date: 2011-08-01 23:19 -0600 http://bitbucket.org/pypy/pypy/changeset/f0e8e21ec01c/ Log:Added simple dtypes. Still needs a lot of work. diff --git a/pypy/module/micronumpy/__init__.py b/pypy/module/micronumpy/__init__.py

[pypy-commit] pypy numpy-dtype: add interp_dtype.py and its test file

2011-08-01 Thread justinpeel
Author: Justin Peel Branch: numpy-dtype Changeset: r46175:e563185b1051 Date: 2011-08-01 23:21 -0600 http://bitbucket.org/pypy/pypy/changeset/e563185b1051/ Log:add interp_dtype.py and its test file diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/interp_dtype.py n

[pypy-commit] pypy default: Alex Gaynor's error message patch to help people like me figure out what they are doing wrong

2011-08-01 Thread justinpeel
Author: Justin Peel Branch: Changeset: r46177:4b3c8fa61ddd Date: 2011-08-02 00:18 -0600 http://bitbucket.org/pypy/pypy/changeset/4b3c8fa61ddd/ Log:Alex Gaynor's error message patch to help people like me figure out what they are doing wrong diff --git a/pypy/interpreter/gateway.py b