[pypy-commit] pypy stdlib-2.7.6: another try at the stubborn ssl rffi usage

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69601:607fcb7dfabe Date: 2014-03-02 03:02 -0500 http://bitbucket.org/pypy/pypy/changeset/607fcb7dfabe/ Log:another try at the stubborn ssl rffi usage diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/

[pypy-commit] pypy stdlib-2.7.6: fix charmap_decode with non-BMP chars as integers (cpython issue15379)

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69602:87cf171379cb Date: 2014-03-02 03:18 -0500 http://bitbucket.org/pypy/pypy/changeset/87cf171379cb/ Log:fix charmap_decode with non-BMP chars as integers (cpython issue15379) diff --git a/pypy/module/_codecs/interp_codecs.py b

[pypy-commit] stmgc default: Unify the two hacks to check that memory is correctly zeroed.

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r917:2f1cd052bf40 Date: 2014-03-02 09:26 +0100 http://bitbucket.org/pypy/stmgc/changeset/2f1cd052bf40/ Log:Unify the two hacks to check that memory is correctly zeroed. diff --git a/c7/stm/gcpage.c b/c7/stm/gcpage.c --- a/c7/stm/gcpage.c +++ b/c7/stm/gc

[pypy-commit] pypy stdlib-2.7.6: improve type checking in charmap_encode also

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69603:76668a98dac6 Date: 2014-03-02 03:31 -0500 http://bitbucket.org/pypy/pypy/changeset/76668a98dac6/ Log:improve type checking in charmap_encode also diff --git a/pypy/module/_codecs/interp_codecs.py b/pypy/module/_codecs/interp_codecs

[pypy-commit] pypy stdlib-2.7.6: fix escape_decode to support replace/ignore modes

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69604:8767512bf42b Date: 2014-03-02 03:25 -0500 http://bitbucket.org/pypy/pypy/changeset/8767512bf42b/ Log:fix escape_decode to support replace/ignore modes diff --git a/pypy/interpreter/pyparser/parsestring.py b/pypy/interpreter/pyparse

[pypy-commit] pypy default: Have a limited subset of "__pytrace__=1" work: dumping bytecodes as they

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r69605:bc27ffd19a3c Date: 2014-03-02 10:13 +0100 http://bitbucket.org/pypy/pypy/changeset/bc27ffd19a3c/ Log:Have a limited subset of "__pytrace__=1" work: dumping bytecodes as they are executed. Sorry, not tested (how..?) diff --git a/pypy/doc/g

[pypy-commit] stmgc default: Done major GC

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r918:e75c4da5871c Date: 2014-03-02 10:25 +0100 http://bitbucket.org/pypy/stmgc/changeset/e75c4da5871c/ Log:Done major GC diff --git a/c7/TODO b/c7/TODO --- a/c7/TODO +++ b/c7/TODO @@ -1,5 +1,3 @@ - -- major GC - use small uniform gcpages __

[pypy-commit] pypy default: A test for bc27ffd19a3c

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r69606:931f9189e510 Date: 2014-03-02 10:25 +0100 http://bitbucket.org/pypy/pypy/changeset/931f9189e510/ Log:A test for bc27ffd19a3c diff --git a/pypy/interpreter/test/test_zpy.py b/pypy/interpreter/test/test_zpy.py --- a/pypy/interpreter/test/test_zpy.

[pypy-commit] stmgc default: Remove outdated comments. Kill the call to

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r919:afa747f195c1 Date: 2014-03-02 10:48 +0100 http://bitbucket.org/pypy/stmgc/changeset/afa747f195c1/ Log:Remove outdated comments. Kill the call to reset_transaction_read_version_prebuilt(). diff --git a/c7/stm/core.c b/c7/stm/core.c --- a/c7/

[pypy-commit] stmgc default: Add a missing thing about the major gc

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r920:0fb6c73d7b5a Date: 2014-03-02 10:48 +0100 http://bitbucket.org/pypy/stmgc/changeset/0fb6c73d7b5a/ Log:Add a missing thing about the major gc diff --git a/c7/stm/gcpage.c b/c7/stm/gcpage.c --- a/c7/stm/gcpage.c +++ b/c7/stm/gcpage.c @@ -403,6 +403,9

[pypy-commit] pypy stdlib-2.7.6: fix unicode_decode_escape behavior

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69607:a3e0260e2eea Date: 2014-03-02 05:06 -0500 http://bitbucket.org/pypy/pypy/changeset/a3e0260e2eea/ Log:fix unicode_decode_escape behavior diff --git a/pypy/module/_codecs/test/test_codecs.py b/pypy/module/_codecs/test/test_codecs.py

[pypy-commit] stmgc default: Coment out this function here too.

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r921:1974a2cff585 Date: 2014-03-02 11:32 +0100 http://bitbucket.org/pypy/stmgc/changeset/1974a2cff585/ Log:Coment out this function here too. diff --git a/c7/stm/prebuilt.c b/c7/stm/prebuilt.c --- a/c7/stm/prebuilt.c +++ b/c7/stm/prebuilt.c @@ -73,8 +73

[pypy-commit] pypy stdlib-2.7.6: add codeccallback test that passes after last fix

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69608:6f8dc12b87a0 Date: 2014-03-02 05:12 -0500 http://bitbucket.org/pypy/pypy/changeset/6f8dc12b87a0/ Log:add codeccallback test that passes after last fix diff --git a/pypy/module/_codecs/test/test_codecs.py b/pypy/module/_codecs/test/

[pypy-commit] pypy stdlib-2.7.6: another string formatting overflow fix

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69609:acad125f3839 Date: 2014-03-02 05:40 -0500 http://bitbucket.org/pypy/pypy/changeset/acad125f3839/ Log:another string formatting overflow fix diff --git a/pypy/objspace/std/formatting.py b/pypy/objspace/std/formatting.py --- a/pypy/ob

[pypy-commit] pypy stdlib-2.7.6: fix an overflow check in ctypes

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69610:6e0fd2b13e01 Date: 2014-03-02 06:03 -0500 http://bitbucket.org/pypy/pypy/changeset/6e0fd2b13e01/ Log:fix an overflow check in ctypes diff --git a/lib_pypy/_ctypes/structure.py b/lib_pypy/_ctypes/structure.py --- a/lib_pypy/_ctypes/s

[pypy-commit] stmgc default: In-progress: resharing of pages. Doesn't work right now, so is not enabled.

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r922:2e8187050db2 Date: 2014-03-02 12:30 +0100 http://bitbucket.org/pypy/stmgc/changeset/2e8187050db2/ Log:In-progress: resharing of pages. Doesn't work right now, so is not enabled. diff --git a/c7/stm/contention.c b/c7/stm/contention.c --- a/c

[pypy-commit] pypy stdlib-2.7.6: cleanup some duplicated tests

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69612:9bf739c1dbf9 Date: 2014-03-02 06:51 -0500 http://bitbucket.org/pypy/pypy/changeset/9bf739c1dbf9/ Log:cleanup some duplicated tests diff --git a/lib_pypy/_ctypes/basics.py b/lib_pypy/_ctypes/basics.py --- a/lib_pypy/_ctypes/basics.py

[pypy-commit] pypy stdlib-2.7.6: fix translation

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69611:9268939caf10 Date: 2014-03-02 06:42 -0500 http://bitbucket.org/pypy/pypy/changeset/9268939caf10/ Log:fix translation diff --git a/pypy/objspace/std/formatting.py b/pypy/objspace/std/formatting.py --- a/pypy/objspace/std/formatting.p

[pypy-commit] pypy default: try to print the class of the virtual that is being promoted

2014-03-02 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r69613:366c6b15a89b Date: 2014-03-02 14:17 +0100 http://bitbucket.org/pypy/pypy/changeset/366c6b15a89b/ Log:try to print the class of the virtual that is being promoted diff --git a/rpython/jit/metainterp/optimizeopt/rewrite.py b/rpython/jit/m

[pypy-commit] stmgc default: Progress, but still disabled because I got one crash in duhton

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r923:3d93e48f1cce Date: 2014-03-02 14:02 +0100 http://bitbucket.org/pypy/stmgc/changeset/3d93e48f1cce/ Log:Progress, but still disabled because I got one crash in duhton diff --git a/c7/stm/contention.c b/c7/stm/contention.c --- a/c7/stm/contention.c ++

[pypy-commit] stmgc default: I could get a crash only once, and not in gdb, so I've no clue if it's related to this or not at all --- likely not.

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r924:688adfa95b50 Date: 2014-03-02 14:25 +0100 http://bitbucket.org/pypy/stmgc/changeset/688adfa95b50/ Log:I could get a crash only once, and not in gdb, so I've no clue if it's related to this or not at all --- likely not. diff --git a/c7/stm/g

[pypy-commit] pypy stdlib-2.7.6: fix _rawffi bitfield mask calculation

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69614:0bee77fda190 Date: 2014-03-02 09:32 -0500 http://bitbucket.org/pypy/pypy/changeset/0bee77fda190/ Log:fix _rawffi bitfield mask calculation diff --git a/pypy/module/_rawffi/structure.py b/pypy/module/_rawffi/structure.py --- a/pypy/m

[pypy-commit] pypy stdlib-2.7.6: clean up select overflow checking

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69615:5b6d13a5d362 Date: 2014-03-02 10:29 -0500 http://bitbucket.org/pypy/pypy/changeset/5b6d13a5d362/ Log:clean up select overflow checking diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py --- a/pypy/inter

[pypy-commit] cffi default: fix for win32

2014-03-02 Thread mattip
Author: Matti Picus Branch: Changeset: r1470:023010b338a2 Date: 2014-03-02 17:33 +0200 http://bitbucket.org/cffi/cffi/changeset/023010b338a2/ Log:fix for win32 diff --git a/testing/test_function.py b/testing/test_function.py --- a/testing/test_function.py +++ b/testing/test_function.py @@ -

[pypy-commit] pypy default: update cffi, fix most win32 tests

2014-03-02 Thread mattip
Author: Matti Picus Branch: Changeset: r69616:3fdf59785f44 Date: 2014-03-02 18:04 +0200 http://bitbucket.org/pypy/pypy/changeset/3fdf59785f44/ Log:update cffi, fix most win32 tests diff --git a/lib_pypy/cffi/vengine_cpy.py b/lib_pypy/cffi/vengine_cpy.py --- a/lib_pypy/cffi/vengine_cpy.py ++

[pypy-commit] pypy stdlib-2.7.6: small changes

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69617:82d9312d3319 Date: 2014-03-02 10:32 -0500 http://bitbucket.org/pypy/pypy/changeset/82d9312d3319/ Log:small changes diff --git a/pypy/doc/coding-guide.rst b/pypy/doc/coding-guide.rst --- a/pypy/doc/coding-guide.rst +++ b/pypy/doc/cod

[pypy-commit] pypy stdlib-2.7.6: clean up pwd module changes

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69618:beec1f9a3f9e Date: 2014-03-02 11:08 -0500 http://bitbucket.org/pypy/pypy/changeset/beec1f9a3f9e/ Log:clean up pwd module changes diff --git a/pypy/module/pwd/interp_pwd.py b/pypy/module/pwd/interp_pwd.py --- a/pypy/module/pwd/interp

[pypy-commit] pypy stdlib-2.7.6: correctness fixes for pwd module

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69619:f99551340203 Date: 2014-03-02 12:03 -0500 http://bitbucket.org/pypy/pypy/changeset/f99551340203/ Log:correctness fixes for pwd module diff --git a/pypy/module/pwd/interp_pwd.py b/pypy/module/pwd/interp_pwd.py --- a/pypy/module/pwd/i

[pypy-commit] pypy stdlib-2.7.6: fix translation

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69620:254623254a96 Date: 2014-03-02 12:36 -0500 http://bitbucket.org/pypy/pypy/changeset/254623254a96/ Log:fix translation diff --git a/pypy/module/pwd/interp_pwd.py b/pypy/module/pwd/interp_pwd.py --- a/pypy/module/pwd/interp_pwd.py +++

[pypy-commit] stmgc default: Add "gil-c7", a small file that presents the same API to programs

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r925:96659ea5511f Date: 2014-03-02 18:43 +0100 http://bitbucket.org/pypy/stmgc/changeset/96659ea5511f/ Log:Add "gil-c7", a small file that presents the same API to programs but is implemented with a GIL. It contains the minor collector but

[pypy-commit] pypy stdlib-2.7.6: fix zlib decompress flush

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69621:a7c8beafaa1b Date: 2014-03-02 13:06 -0500 http://bitbucket.org/pypy/pypy/changeset/a7c8beafaa1b/ Log:fix zlib decompress flush diff --git a/pypy/module/zlib/interp_zlib.py b/pypy/module/zlib/interp_zlib.py --- a/pypy/module/zlib/int

[pypy-commit] pypy stdlib-2.7.6: random fixes

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69622:35b0897aa1df Date: 2014-03-02 13:29 -0500 http://bitbucket.org/pypy/pypy/changeset/35b0897aa1df/ Log:random fixes diff --git a/pypy/module/pwd/interp_pwd.py b/pypy/module/pwd/interp_pwd.py --- a/pypy/module/pwd/interp_pwd.py +++ b/p

[pypy-commit] stmgc default: Start stm_setup_prebuilt()

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r926:cd8fc6f649af Date: 2014-03-02 19:46 +0100 http://bitbucket.org/pypy/stmgc/changeset/cd8fc6f649af/ Log:Start stm_setup_prebuilt() diff --git a/c7/stm/gcpage.c b/c7/stm/gcpage.c --- a/c7/stm/gcpage.c +++ b/c7/stm/gcpage.c @@ -101,12 +101,12 @@ obj

[pypy-commit] stmgc default: Finish prebuilt.c, according to its test (which I forgot to check-in earlier)

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r927:d8c4f5b49016 Date: 2014-03-02 20:03 +0100 http://bitbucket.org/pypy/stmgc/changeset/d8c4f5b49016/ Log:Finish prebuilt.c, according to its test (which I forgot to check-in earlier) diff --git a/c7/stm/gcpage.c b/c7/stm/gcpage.c --- a/c7/stm/

[pypy-commit] stmgc default: Shrink the init_prebuilt_xxx functions by using stm_setup_prebuilt(). Yay.

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r930:8852b39a1b63 Date: 2014-03-02 20:29 +0100 http://bitbucket.org/pypy/stmgc/changeset/8852b39a1b63/ Log:Shrink the init_prebuilt_xxx functions by using stm_setup_prebuilt(). Yay. diff --git a/duhton/duhton.h b/duhton/duhton.h --- a/duhton/duh

[pypy-commit] stmgc default: Ah, I knew there was a bug.

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r929:d6bde44bb839 Date: 2014-03-02 20:20 +0100 http://bitbucket.org/pypy/stmgc/changeset/d6bde44bb839/ Log:Ah, I knew there was a bug. diff --git a/c7/stm/prebuilt.c b/c7/stm/prebuilt.c --- a/c7/stm/prebuilt.c +++ b/c7/stm/prebuilt.c @@ -35,6 +35,10 @@

[pypy-commit] stmgc default: Add passing tests

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r928:90c311bc6901 Date: 2014-03-02 20:15 +0100 http://bitbucket.org/pypy/stmgc/changeset/90c311bc6901/ Log:Add passing tests diff --git a/c7/test/test_prebuilt.py b/c7/test/test_prebuilt.py --- a/c7/test/test_prebuilt.py +++ b/c7/test/test_prebuilt.py @

[pypy-commit] stmgc default: Update TODO

2014-03-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r931:4e56dcb88db9 Date: 2014-03-02 21:59 +0100 http://bitbucket.org/pypy/stmgc/changeset/4e56dcb88db9/ Log:Update TODO diff --git a/c7/TODO b/c7/TODO --- a/c7/TODO +++ b/c7/TODO @@ -3,4 +3,6 @@ - write barrier for big arrays -- prebuilt objects: st

[pypy-commit] pypy stdlib-2.7.6: test this value as well

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69623:3fbce3747a08 Date: 2014-03-02 19:12 -0500 http://bitbucket.org/pypy/pypy/changeset/3fbce3747a08/ Log:test this value as well diff --git a/pypy/module/_rawffi/test/test__rawffi.py b/pypy/module/_rawffi/test/test__rawffi.py --- a/pyp

[pypy-commit] pypy default: update cffi's _backend_test_c.py

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69624:1b624a48fffc Date: 2014-03-02 20:04 -0500 http://bitbucket.org/pypy/pypy/changeset/1b624a48fffc/ Log:update cffi's _backend_test_c.py diff --git a/pypy/module/_cffi_backend/test/_backend_test_c.py b/pypy/module/_cffi_backend/test/_backend_test

[pypy-commit] pypy stdlib-2.7.6: fix whatsnew

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69625:ffd14bc398d2 Date: 2014-03-02 19:56 -0500 http://bitbucket.org/pypy/pypy/changeset/ffd14bc398d2/ Log:fix whatsnew diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/w

[pypy-commit] pypy stdlib-2.7.6: merge default

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69626:81b36fff2b15 Date: 2014-03-02 20:05 -0500 http://bitbucket.org/pypy/pypy/changeset/81b36fff2b15/ Log:merge default diff --git a/lib_pypy/cffi/vengine_cpy.py b/lib_pypy/cffi/vengine_cpy.py --- a/lib_pypy/cffi/vengine_cpy.py +++ b/lib

[pypy-commit] pypy stdlib-2.7.6: fix pwd on 32bit?

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69627:c212634712e1 Date: 2014-03-02 21:24 -0500 http://bitbucket.org/pypy/pypy/changeset/c212634712e1/ Log:fix pwd on 32bit? diff --git a/pypy/interpreter/error.py b/pypy/interpreter/error.py --- a/pypy/interpreter/error.py +++ b/pypy/int

[pypy-commit] pypy stdlib-2.7.6: cleanup

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69628:312589f4d6e7 Date: 2014-03-02 21:18 -0500 http://bitbucket.org/pypy/pypy/changeset/312589f4d6e7/ Log:cleanup diff --git a/pypy/module/_sre/test/support_test_app_sre.py b/pypy/module/_sre/test/support_test_app_sre.py --- a/pypy/modu

[pypy-commit] pypy stdlib-2.7.6: add sre overflow test

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69629:8903d4b0e55e Date: 2014-03-02 21:13 -0500 http://bitbucket.org/pypy/pypy/changeset/8903d4b0e55e/ Log:add sre overflow test diff --git a/pypy/module/_sre/test/test_app_sre.py b/pypy/module/_sre/test/test_app_sre.py --- a/pypy/module

[pypy-commit] pypy stdlib-2.7.6: now, fix pwd translation on 64bit?

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69630:510ebdd4604e Date: 2014-03-02 22:32 -0500 http://bitbucket.org/pypy/pypy/changeset/510ebdd4604e/ Log:now, fix pwd translation on 64bit? diff --git a/pypy/module/pwd/interp_pwd.py b/pypy/module/pwd/interp_pwd.py --- a/pypy/module/pwd

[pypy-commit] pypy stdlib-2.7.6: fix cpyext test_sre

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69631:b0cdbb4c9947 Date: 2014-03-02 23:56 -0500 http://bitbucket.org/pypy/pypy/changeset/b0cdbb4c9947/ Log:fix cpyext test_sre diff --git a/pypy/module/cpyext/test/test_typeobject.py b/pypy/module/cpyext/test/test_typeobject.py --- a/pyp

[pypy-commit] pypy stdlib-2.7.6: more fixes for zlib

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69632:00860b5ad1a8 Date: 2014-03-03 00:48 -0500 http://bitbucket.org/pypy/pypy/changeset/00860b5ad1a8/ Log:more fixes for zlib diff --git a/pypy/module/zlib/interp_zlib.py b/pypy/module/zlib/interp_zlib.py --- a/pypy/module/zlib/interp_zl

[pypy-commit] pypy stdlib-2.7.6: fix translation for 32bit

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69633:50a62210462c Date: 2014-03-03 01:03 -0500 http://bitbucket.org/pypy/pypy/changeset/50a62210462c/ Log:fix translation for 32bit diff --git a/rpython/rlib/rarithmetic.py b/rpython/rlib/rarithmetic.py --- a/rpython/rlib/rarithmetic.py

[pypy-commit] pypy stdlib-2.7.6: make sure these aren't longs too

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69634:658201d89b47 Date: 2014-03-03 01:06 -0500 http://bitbucket.org/pypy/pypy/changeset/658201d89b47/ Log:make sure these aren't longs too diff --git a/rpython/rlib/rarithmetic.py b/rpython/rlib/rarithmetic.py --- a/rpython/rlib/rarithme

[pypy-commit] pypy stdlib-2.7.6: skip this test if platform doesnt have select.poll

2014-03-02 Thread bdkearns
Author: Brian Kearns Branch: stdlib-2.7.6 Changeset: r69635:95d6e2b29471 Date: 2014-03-03 02:13 -0500 http://bitbucket.org/pypy/pypy/changeset/95d6e2b29471/ Log:skip this test if platform doesnt have select.poll diff --git a/pypy/module/select/test/test_select.py b/pypy/module/select/test/t