[pypy-commit] pypy default: Unsure if "instance_ptr_iszero" and "instance_ptr_nonzero" are meant to

2014-02-23 Thread arigo
Author: Armin Rigo Branch: Changeset: r69279:c9f9e30aac58 Date: 2014-02-23 09:08 +0100 http://bitbucket.org/pypy/pypy/changeset/c9f9e30aac58/ Log:Unsure if "instance_ptr_iszero" and "instance_ptr_nonzero" are meant to appear or not during codewriting. Right now they do, and then

[pypy-commit] pypy default: merge heads

2014-02-23 Thread arigo
Author: Armin Rigo Branch: Changeset: r69280:584db7c5330f Date: 2014-02-23 09:09 +0100 http://bitbucket.org/pypy/pypy/changeset/584db7c5330f/ Log:merge heads diff --git a/pypy/module/thread/os_lock.py b/pypy/module/thread/os_lock.py --- a/pypy/module/thread/os_lock.py +++ b/pypy/module/thre

[pypy-commit] pypy default: Remove dead code

2014-02-23 Thread arigo
Author: Armin Rigo Branch: Changeset: r69281:5dc7a91fe1e3 Date: 2014-02-23 09:18 +0100 http://bitbucket.org/pypy/pypy/changeset/5dc7a91fe1e3/ Log:Remove dead code diff --git a/rpython/jit/codewriter/jtransform.py b/rpython/jit/codewriter/jtransform.py --- a/rpython/jit/codewriter/jtransfor

[pypy-commit] pypy default: Copy the py3k logic in Condition.wait()

2014-02-23 Thread arigo
Author: Armin Rigo Branch: Changeset: r69282:8d88f18cc867 Date: 2014-02-23 09:59 +0100 http://bitbucket.org/pypy/pypy/changeset/8d88f18cc867/ Log:Copy the py3k logic in Condition.wait() diff --git a/lib-python/2.7/threading.py b/lib-python/2.7/threading.py --- a/lib-python/2.7/threading.py

[pypy-commit] pypy default: Support possibly-misaligned raw-storage getitems and setitems.

2014-02-23 Thread arigo
Author: Armin Rigo Branch: Changeset: r69283:6b8aaf94225a Date: 2014-02-23 10:35 +0100 http://bitbucket.org/pypy/pypy/changeset/6b8aaf94225a/ Log:Support possibly-misaligned raw-storage getitems and setitems. diff --git a/rpython/rlib/rawstorage.py b/rpython/rlib/rawstorage.py --- a/rpython

[pypy-commit] stmgc c7-refactor: Tweaks

2014-02-23 Thread arigo
Author: Armin Rigo Branch: c7-refactor Changeset: r812:027470d9d12b Date: 2014-02-23 14:25 +0100 http://bitbucket.org/pypy/stmgc/changeset/027470d9d12b/ Log:Tweaks diff --git a/c7/stm/core.c b/c7/stm/core.c --- a/c7/stm/core.c +++ b/c7/stm/core.c @@ -128,8 +128,14 @@ uint8_t old_rv =

[pypy-commit] stmgc c7-refactor: A first real test for nursery collection. Fails

2014-02-23 Thread arigo
Author: Armin Rigo Branch: c7-refactor Changeset: r813:07aa2f23e825 Date: 2014-02-23 14:40 +0100 http://bitbucket.org/pypy/stmgc/changeset/07aa2f23e825/ Log:A first real test for nursery collection. Fails diff --git a/c7/stm/gcpage.c b/c7/stm/gcpage.c --- a/c7/stm/gcpage.c +++ b/c7/stm/gcpag

[pypy-commit] stmgc c7-refactor: Fixes for the test.

2014-02-23 Thread arigo
Author: Armin Rigo Branch: c7-refactor Changeset: r814:9a45fb18c2da Date: 2014-02-23 15:29 +0100 http://bitbucket.org/pypy/stmgc/changeset/9a45fb18c2da/ Log:Fixes for the test. diff --git a/c7/stm/misc.c b/c7/stm/misc.c --- a/c7/stm/misc.c +++ b/c7/stm/misc.c @@ -52,3 +52,24 @@ { retur

[pypy-commit] pypy default: Fix a warning in the C code

2014-02-23 Thread arigo
Author: Armin Rigo Branch: Changeset: r69284:9535a395a13f Date: 2014-02-23 16:25 +0100 http://bitbucket.org/pypy/pypy/changeset/9535a395a13f/ Log:Fix a warning in the C code diff --git a/rpython/rlib/_stacklet_asmgcc.py b/rpython/rlib/_stacklet_asmgcc.py --- a/rpython/rlib/_stacklet_asmgcc.

[pypy-commit] stmgc c7-refactor: Failing test

2014-02-23 Thread arigo
Author: Armin Rigo Branch: c7-refactor Changeset: r816:8cbb49ebda1c Date: 2014-02-23 16:32 +0100 http://bitbucket.org/pypy/stmgc/changeset/8cbb49ebda1c/ Log:Failing test diff --git a/c7/stm/nursery.c b/c7/stm/nursery.c --- a/c7/stm/nursery.c +++ b/c7/stm/nursery.c @@ -413,7 +413,7 @@ /*

[pypy-commit] stmgc c7-refactor: Next test passes

2014-02-23 Thread arigo
Author: Armin Rigo Branch: c7-refactor Changeset: r815:8a68e946b423 Date: 2014-02-23 15:34 +0100 http://bitbucket.org/pypy/stmgc/changeset/8a68e946b423/ Log:Next test passes diff --git a/c7/test/support.py b/c7/test/support.py --- a/c7/test/support.py +++ b/c7/test/support.py @@ -373,7 +373,

[pypy-commit] pypy default: fix segfault on np.fromstring of record type

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69288:cd632d18a772 Date: 2014-02-23 13:50 -0500 http://bitbucket.org/pypy/pypy/changeset/cd632d18a772/ Log:fix segfault on np.fromstring of record type diff --git a/pypy/module/micronumpy/test/test_numarray.py b/pypy/module/micronumpy/test/test_numa

[pypy-commit] pypy default: support dtype from commastring

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69286:b744291da355 Date: 2014-02-23 02:39 -0500 http://bitbucket.org/pypy/pypy/changeset/b744291da355/ Log:support dtype from commastring diff --git a/pypy/module/micronumpy/appbridge.py b/pypy/module/micronumpy/appbridge.py --- a/pypy/module/micron

[pypy-commit] pypy default: fix dtype from commastring

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69287:cf3918b33b35 Date: 2014-02-23 03:26 -0500 http://bitbucket.org/pypy/pypy/changeset/cf3918b33b35/ Log:fix dtype from commastring diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/interp_dtype.py --- a/pypy/module/micr

[pypy-commit] pypy default: merge heads

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69289:d674245526d9 Date: 2014-02-23 14:01 -0500 http://bitbucket.org/pypy/pypy/changeset/d674245526d9/ Log:merge heads diff --git a/lib-python/2.7/threading.py b/lib-python/2.7/threading.py --- a/lib-python/2.7/threading.py +++ b/lib-python/2.7/threa

[pypy-commit] pypy default: generalize numpy appbridge

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69285:67f86a9b9918 Date: 2014-02-23 03:42 -0500 http://bitbucket.org/pypy/pypy/changeset/67f86a9b9918/ Log:generalize numpy appbridge diff --git a/pypy/module/micronumpy/appbridge.py b/pypy/module/micronumpy/appbridge.py --- a/pypy/module/micronumpy

[pypy-commit] pypy default: fix fill for complex with non-native byteorder

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69290:793aeb9704c0 Date: 2014-02-23 15:05 -0500 http://bitbucket.org/pypy/pypy/changeset/793aeb9704c0/ Log:fix fill for complex with non-native byteorder diff --git a/pypy/module/micronumpy/test/test_numarray.py b/pypy/module/micronumpy/test/test_nu

[pypy-commit] pypy default: make _get_dtype elidable

2014-02-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r69291:cd6a5bc9740c Date: 2014-02-23 22:29 +0200 http://bitbucket.org/pypy/pypy/changeset/cd6a5bc9740c/ Log:make _get_dtype elidable diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py --- a/pypy/module/

[pypy-commit] pypy default: I hate import *

2014-02-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r69292:15169d58e5d5 Date: 2014-02-23 22:37 +0200 http://bitbucket.org/pypy/pypy/changeset/15169d58e5d5/ Log:I hate import * diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py --- a/pypy/module/micronump

[pypy-commit] pypy default: kill them then

2014-02-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r69293:b712696ed9bb Date: 2014-02-23 22:37 +0200 http://bitbucket.org/pypy/pypy/changeset/b712696ed9bb/ Log:kill them then diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py --- a/pypy/module/micronumpy

[pypy-commit] pypy align_float_cast: solved differently

2014-02-23 Thread mattip
Author: Matti Picus Branch: align_float_cast Changeset: r69294:ad533b895e2c Date: 2014-02-23 22:37 +0200 http://bitbucket.org/pypy/pypy/changeset/ad533b895e2c/ Log:solved differently ___ pypy-commit mailing list pypy-commit@python.org https://mail.

[pypy-commit] pypy closed-branches: merge heads

2014-02-23 Thread mattip
Author: Matti Picus Branch: closed-branches Changeset: r69295:25ae739a8d5b Date: 2014-02-23 22:43 +0200 http://bitbucket.org/pypy/pypy/changeset/25ae739a8d5b/ Log:merge heads ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.o

[pypy-commit] pypy default: specify unaligned accesses in micronumpy

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69296:b9b994201abe Date: 2014-02-23 15:45 -0500 http://bitbucket.org/pypy/pypy/changeset/b9b994201abe/ Log:specify unaligned accesses in micronumpy diff --git a/pypy/module/micronumpy/types.py b/pypy/module/micronumpy/types.py --- a/pypy/module/micro

[pypy-commit] pypy default: merge heads

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69297:510c3afd0ff0 Date: 2014-02-23 15:46 -0500 http://bitbucket.org/pypy/pypy/changeset/510c3afd0ff0/ Log:merge heads diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py --- a/pypy/module/micronumpy/interp_b

[pypy-commit] pypy default: different pattern for micronumpy constants

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69298:cd03cd6fcd23 Date: 2014-02-23 16:12 -0500 http://bitbucket.org/pypy/pypy/changeset/cd03cd6fcd23/ Log:different pattern for micronumpy constants diff --git a/pypy/module/micronumpy/constants.py b/pypy/module/micronumpy/constants.py --- a/pypy/m

[pypy-commit] pypy remove-remaining-smm: Kill complextype.py, kill conjugate SMM.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69299:4286faa95835 Date: 2014-02-23 21:36 +0100 http://bitbucket.org/pypy/pypy/changeset/4286faa95835/ Log:Kill complextype.py, kill conjugate SMM. diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/inter

[pypy-commit] pypy remove-remaining-smm: IN-PROGESS: Kill binary SMMs of complex.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69300:e8346b7b8d72 Date: 2014-02-23 22:15 +0100 http://bitbucket.org/pypy/pypy/changeset/e8346b7b8d72/ Log:IN-PROGESS: Kill binary SMMs of complex. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.

[pypy-commit] pypy default: compare with a constant here instead of name

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69301:f3d4ec29ecfc Date: 2014-02-23 16:25 -0500 http://bitbucket.org/pypy/pypy/changeset/f3d4ec29ecfc/ Log:compare with a constant here instead of name diff --git a/pypy/module/micronumpy/interp_ufuncs.py b/pypy/module/micronumpy/interp_ufuncs.py --

[pypy-commit] pypy default: fix segfault on np.arr.astype(record)

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69302:5ec998bf16a1 Date: 2014-02-23 16:40 -0500 http://bitbucket.org/pypy/pypy/changeset/5ec998bf16a1/ Log:fix segfault on np.arr.astype(record) diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py --- a

[pypy-commit] pypy default: add dot bench script

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69304:74eff28ac998 Date: 2014-02-23 16:57 -0500 http://bitbucket.org/pypy/pypy/changeset/74eff28ac998/ Log:add dot bench script diff --git a/pypy/module/micronumpy/bench/dot.py b/pypy/module/micronumpy/bench/dot.py new file mode 100644 --- /dev/null

[pypy-commit] pypy default: cleanup/pep8

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69303:c814fb7f7341 Date: 2014-02-23 16:55 -0500 http://bitbucket.org/pypy/pypy/changeset/c814fb7f7341/ Log:cleanup/pep8 diff --git a/pypy/module/micronumpy/arrayimpl/scalar.py b/pypy/module/micronumpy/arrayimpl/scalar.py --- a/pypy/module/micronumpy

[pypy-commit] pypy remove-remaining-smm: Fix test_coerce().

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69305:ea4b812690a9 Date: 2014-02-23 22:47 +0100 http://bitbucket.org/pypy/pypy/changeset/ea4b812690a9/ Log:Fix test_coerce(). diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/pypy/objspace

[pypy-commit] pypy remove-remaining-smm: Add remaining __r*__ to complex.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69306:5f3f540c4ba5 Date: 2014-02-23 23:04 +0100 http://bitbucket.org/pypy/pypy/changeset/5f3f540c4ba5/ Log:Add remaining __r*__ to complex. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a

[pypy-commit] pypy remove-remaining-smm: Move descr_conjugate.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69307:3f359859555e Date: 2014-02-23 23:13 +0100 http://bitbucket.org/pypy/pypy/changeset/3f359859555e/ Log:Move descr_conjugate. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/pypy/objsp

[pypy-commit] pypy remove-remaining-smm: Kill complex' comparison SMMs.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69311:539b3c1e0501 Date: 2014-02-23 23:46 +0100 http://bitbucket.org/pypy/pypy/changeset/539b3c1e0501/ Log:Kill complex' comparison SMMs. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/p

[pypy-commit] pypy remove-remaining-smm: Kill dead imports.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69312:83173344840d Date: 2014-02-23 23:47 +0100 http://bitbucket.org/pypy/pypy/changeset/83173344840d/ Log:Kill dead imports. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/pypy/objspace

[pypy-commit] pypy remove-remaining-smm: Kill remaining complex SMMs.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69313:b4df3096e70c Date: 2014-02-24 00:14 +0100 http://bitbucket.org/pypy/pypy/changeset/b4df3096e70c/ Log:Kill remaining complex SMMs. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/pyp

[pypy-commit] pypy remove-remaining-smm: Make W_ComplexObject a W_Root.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69314:9bad70f6ed72 Date: 2014-02-24 00:18 +0100 http://bitbucket.org/pypy/pypy/changeset/9bad70f6ed72/ Log:Make W_ComplexObject a W_Root. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/p

[pypy-commit] pypy remove-remaining-smm: Kill complex.__hash__ SMM.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69308:301f03687bca Date: 2014-02-23 23:16 +0100 http://bitbucket.org/pypy/pypy/changeset/301f03687bca/ Log:Kill complex.__hash__ SMM. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/pypy/

[pypy-commit] pypy remove-remaining-smm: Don't special case w_bool.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69310:77fb097f2896 Date: 2014-02-23 23:26 +0100 http://bitbucket.org/pypy/pypy/changeset/77fb097f2896/ Log:Don't special case w_bool. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/pypy/

[pypy-commit] pypy remove-remaining-smm: Fix the case when binary ops are called with an unsupported operand.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69309:7d53c974e8fa Date: 2014-02-23 23:23 +0100 http://bitbucket.org/pypy/pypy/changeset/7d53c974e8fa/ Log:Fix the case when binary ops are called with an unsupported operand. diff --git a/pypy/objspace/std/complexobject.py b/pypy

[pypy-commit] pypy remove-remaining-smm: pep8

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69316:a141c6e25ef6 Date: 2014-02-24 00:35 +0100 http://bitbucket.org/pypy/pypy/changeset/a141c6e25ef6/ Log:pep8 diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/pypy/objspace/std/complexob

[pypy-commit] pypy remove-remaining-smm: Move to_complex().

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69315:5f71433268dc Date: 2014-02-24 00:21 +0100 http://bitbucket.org/pypy/pypy/changeset/5f71433268dc/ Log:Move to_complex(). diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/pypy/objspace

[pypy-commit] pypy default: add a numpy constant

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69318:1a50a1ac857b Date: 2014-02-23 19:08 -0500 http://bitbucket.org/pypy/pypy/changeset/1a50a1ac857b/ Log:add a numpy constant diff --git a/pypy/module/micronumpy/__init__.py b/pypy/module/micronumpy/__init__.py --- a/pypy/module/micronumpy/__init_

[pypy-commit] pypy default: failing test for hash of record dtypes

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69317:f33ed1c13f41 Date: 2014-02-23 18:14 -0500 http://bitbucket.org/pypy/pypy/changeset/f33ed1c13f41/ Log:failing test for hash of record dtypes diff --git a/pypy/module/micronumpy/test/test_dtypes.py b/pypy/module/micronumpy/test/test_dtypes.py --

[pypy-commit] pypy default: fix ndarray.astype(S0)

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69319:f2ff6d660efd Date: 2014-02-23 19:17 -0500 http://bitbucket.org/pypy/pypy/changeset/f2ff6d660efd/ Log:fix ndarray.astype(S0) diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py --- a/pypy/module/mi

[pypy-commit] pypy default: better error for ndarray.take with unsupported mode

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69320:036b96efb852 Date: 2014-02-23 19:59 -0500 http://bitbucket.org/pypy/pypy/changeset/036b96efb852/ Log:better error for ndarray.take with unsupported mode diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_num

[pypy-commit] pypy remove-remaining-smm: Kill float's binary SMMs.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69322:c12626ccdd0a Date: 2014-02-24 02:07 +0100 http://bitbucket.org/pypy/pypy/changeset/c12626ccdd0a/ Log:Kill float's binary SMMs. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/objspa

[pypy-commit] pypy remove-remaining-smm: Kill floattype.py.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69321:2ae7ef84292e Date: 2014-02-24 01:08 +0100 http://bitbucket.org/pypy/pypy/changeset/2ae7ef84292e/ Log:Kill floattype.py. diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py --- a/pypy/

[pypy-commit] pypy remove-remaining-smm: Kill float's comparison SMMs.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69323:9b1c802844d9 Date: 2014-02-24 02:49 +0100 http://bitbucket.org/pypy/pypy/changeset/9b1c802844d9/ Log:Kill float's comparison SMMs. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/ob

[pypy-commit] pypy default: fix some dtype str/repr cases

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69325:00beb1b741ed Date: 2014-02-23 20:52 -0500 http://bitbucket.org/pypy/pypy/changeset/00beb1b741ed/ Log:fix some dtype str/repr cases diff --git a/pypy/module/micronumpy/arrayimpl/sort.py b/pypy/module/micronumpy/arrayimpl/sort.py --- a/pypy/modu

[pypy-commit] pypy default: handle ndarray getitem with ellipsis

2014-02-23 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69324:b7dd23fb75be Date: 2014-02-23 20:28 -0500 http://bitbucket.org/pypy/pypy/changeset/b7dd23fb75be/ Log:handle ndarray getitem with ellipsis diff --git a/pypy/module/micronumpy/compile.py b/pypy/module/micronumpy/compile.py --- a/pypy/module/micr

[pypy-commit] pypy py3k: Redo 992e29624c5f, this time hopefully right -- it's a bit of a mess to call

2014-02-23 Thread arigo
Author: Armin Rigo Branch: py3k Changeset: r69326:f629c3ae62be Date: 2014-02-22 08:07 +0100 http://bitbucket.org/pypy/pypy/changeset/f629c3ae62be/ Log:Redo 992e29624c5f, this time hopefully right -- it's a bit of a mess to call c_mmap_safe() from two different points in translation

[pypy-commit] pypy remove-remaining-smm: Make W_FloatObject a W_Root.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69333:ea78a007be31 Date: 2014-02-24 03:53 +0100 http://bitbucket.org/pypy/pypy/changeset/ea78a007be31/ Log:Make W_FloatObject a W_Root. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/obj

[pypy-commit] pypy remove-remaining-smm: Remove trailing whitespace.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69331:cfa332355a56 Date: 2014-02-24 03:43 +0100 http://bitbucket.org/pypy/pypy/changeset/cfa332355a56/ Log:Remove trailing whitespace. diff --git a/pypy/objspace/std/test/test_floatobject.py b/pypy/objspace/std/test/test_floatobje

[pypy-commit] pypy remove-remaining-smm: Organize imports.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69332:86996b85032a Date: 2014-02-24 03:46 +0100 http://bitbucket.org/pypy/pypy/changeset/86996b85032a/ Log:Organize imports. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/objspace/std/f

[pypy-commit] pypy remove-remaining-smm: Move descr___getformat__().

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69329:ae5780334104 Date: 2014-02-24 03:31 +0100 http://bitbucket.org/pypy/pypy/changeset/ae5780334104/ Log:Move descr___getformat__(). diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/objs

[pypy-commit] pypy remove-remaining-smm: Kill W_AbstractFloatObject, its only subclass is W_FloatObject.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69327:0893e9d51fd5 Date: 2014-02-24 02:54 +0100 http://bitbucket.org/pypy/pypy/changeset/0893e9d51fd5/ Log:Kill W_AbstractFloatObject, its only subclass is W_FloatObject. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspac

[pypy-commit] pypy remove-remaining-smm: Kill last float SMMs.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69330:a2d089c94859 Date: 2014-02-24 03:41 +0100 http://bitbucket.org/pypy/pypy/changeset/a2d089c94859/ Log:Kill last float SMMs. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/objspace/s

[pypy-commit] pypy remove-remaining-smm: Kill float's unary SMMs.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69328:ccf5419c3a76 Date: 2014-02-24 03:22 +0100 http://bitbucket.org/pypy/pypy/changeset/ccf5419c3a76/ Log:Kill float's unary SMMs. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/objspac

[pypy-commit] pypy remove-remaining-smm: Move _string_to_float().

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69334:3952560d233a Date: 2014-02-24 03:57 +0100 http://bitbucket.org/pypy/pypy/changeset/3952560d233a/ Log:Move _string_to_float(). diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/objspac

[pypy-commit] pypy remove-remaining-smm: Move wrap_parsestringerror() -> pypy.objspace.std.util.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69335:82db216f833a Date: 2014-02-24 04:09 +0100 http://bitbucket.org/pypy/pypy/changeset/82db216f833a/ Log:Move wrap_parsestringerror() -> pypy.objspace.std.util. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/fl

[pypy-commit] pypy remove-remaining-smm: Fix imports.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69336:cc55e80e9b8a Date: 2014-02-24 04:15 +0100 http://bitbucket.org/pypy/pypy/changeset/cc55e80e9b8a/ Log:Fix imports. diff --git a/pypy/module/_csv/interp_reader.py b/pypy/module/_csv/interp_reader.py --- a/pypy/module/_csv/inte

[pypy-commit] pypy remove-remaining-smm: Do style changes and clean up module namespace a bit.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69340:d3d741d4b31a Date: 2014-02-24 05:07 +0100 http://bitbucket.org/pypy/pypy/changeset/d3d741d4b31a/ Log:Do style changes and clean up module namespace a bit. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floa

[pypy-commit] pypy remove-remaining-smm: Use oefmt and split some long lines.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69337:f5478e57e58e Date: 2014-02-24 04:30 +0100 http://bitbucket.org/pypy/pypy/changeset/f5478e57e58e/ Log:Use oefmt and split some long lines. diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py -

[pypy-commit] pypy remove-remaining-smm: Fix.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69338:947db7701d1b Date: 2014-02-24 04:34 +0100 http://bitbucket.org/pypy/pypy/changeset/947db7701d1b/ Log:Fix. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/objspace/std/floatobject.py

[pypy-commit] pypy remove-remaining-smm: Make W_NoneObject a W_Root.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69341:9f9e64ea5ddc Date: 2014-02-24 05:17 +0100 http://bitbucket.org/pypy/pypy/changeset/9f9e64ea5ddc/ Log:Make W_NoneObject a W_Root. diff --git a/pypy/objspace/std/model.py b/pypy/objspace/std/model.py --- a/pypy/objspace/std/mod

[pypy-commit] pypy remove-remaining-smm: Use oefmt.

2014-02-23 Thread Manuel Jacob
Author: Manuel Jacob Branch: remove-remaining-smm Changeset: r69339:33053f5a43be Date: 2014-02-24 04:43 +0100 http://bitbucket.org/pypy/pypy/changeset/33053f5a43be/ Log:Use oefmt. diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py --- a/pypy/objspace/std/floatobj