[pypy-commit] pypy default: test_forked_can_thread failed today on linux64. No clue, but try

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r64869:9b623bc48b59 Date: 2013-06-13 10:00 +0200 http://bitbucket.org/pypy/pypy/changeset/9b623bc48b59/ Log:test_forked_can_thread failed today on linux64. No clue, but try randomly to increase the kill timer, in case it was due to very high

[pypy-commit] stmgc default: Fix, at least for the tests: don't use "-1" initially for all threads

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r111:c3ea72ae1029 Date: 2013-06-13 10:15 +0200 http://bitbucket.org/pypy/stmgc/changeset/c3ea72ae1029/ Log:Fix, at least for the tests: don't use "-1" initially for all threads diff --git a/c4/et.c b/c4/et.c --- a/c4/et.c +++ b/c4/et.c @@ -1274,

[pypy-commit] stmgc default: Fix "stealing again the same object"

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r113:b9568f14bdd9 Date: 2013-06-13 10:36 +0200 http://bitbucket.org/pypy/stmgc/changeset/b9568f14bdd9/ Log:Fix "stealing again the same object" diff --git a/c4/steal.c b/c4/steal.c --- a/c4/steal.c +++ b/c4/steal.c @@ -109,6 +109,10 @@ if (B-

[pypy-commit] stmgc default: Tweak tests

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r112:573298ebb564 Date: 2013-06-13 10:33 +0200 http://bitbucket.org/pypy/stmgc/changeset/573298ebb564/ Log:Tweak tests diff --git a/c4/test/support.py b/c4/test/support.py --- a/c4/test/support.py +++ b/c4/test/support.py @@ -530,7 +530,7 @@ backup

[pypy-commit] stmgc default: Add demo1.c from ../c3. Works.

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r114:f5727433a73e Date: 2013-06-13 11:32 +0200 http://bitbucket.org/pypy/stmgc/changeset/f5727433a73e/ Log:Add demo1.c from ../c3. Works. diff --git a/c3/Makefile b/c4/Makefile copy from c3/Makefile copy to c4/Makefile --- a/c3/Makefile +++ b/c4/Makefil

[pypy-commit] pypy default: Added tag pypy-2.1-beta1-arm for changeset ab0dd631c220

2013-06-13 Thread bivab
Author: David Schneider Branch: Changeset: r64871:18f1a3e22254 Date: 2013-06-13 14:35 +0200 http://bitbucket.org/pypy/pypy/changeset/18f1a3e22254/ Log:Added tag pypy-2.1-beta1-arm for changeset ab0dd631c220 diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -4,3 +4,5 @@ ff4af8f3

[pypy-commit] pypy default: Added tag pypy-2.1-beta1-arm for changeset 9b623bc48b59

2013-06-13 Thread bivab
Author: David Schneider Branch: Changeset: r64870:02ae35f0be09 Date: 2013-06-13 14:33 +0200 http://bitbucket.org/pypy/pypy/changeset/02ae35f0be09/ Log:Added tag pypy-2.1-beta1-arm for changeset 9b623bc48b59 diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -3,3 +3,4 @@ d8ac7d23

[pypy-commit] stmgc default: Re-skip this never-ending part

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r116:f1ccf5bbcb6f Date: 2013-06-13 15:11 +0200 http://bitbucket.org/pypy/stmgc/changeset/f1ccf5bbcb6f/ Log:Re-skip this never-ending part diff --git a/c4/test/test_random.py b/c4/test/test_random.py --- a/c4/test/test_random.py +++ b/c4/test/test_random

[pypy-commit] stmgc default: Fix of the test by being more adaptable to the logic that might sometimes

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r115:a3469e49931a Date: 2013-06-13 15:08 +0200 http://bitbucket.org/pypy/stmgc/changeset/a3469e49931a/ Log:Fix of the test by being more adaptable to the logic that might sometimes detect conflicts even if we have private copies. diff --git a/c4

[pypy-commit] stmgc default: Added tag c4-without-gc for changeset f1ccf5bbcb6f

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r117:7c75ea00f9fd Date: 2013-06-13 15:30 +0200 http://bitbucket.org/pypy/stmgc/changeset/7c75ea00f9fd/ Log:Added tag c4-without-gc for changeset f1ccf5bbcb6f diff --git a/.hgtags b/.hgtags new file mode 100644 --- /dev/null +++ b/.hgtags @@ -0,0 +1,1 @@

[pypy-commit] pypy default: Add implementation of _tkinter, using cffi bindings.

2013-06-13 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r64872:2c9002e840f0 Date: 2013-06-13 14:06 +0200 http://bitbucket.org/pypy/pypy/changeset/2c9002e840f0/ Log:Add implementation of _tkinter, using cffi bindings. diff --git a/lib_pypy/_tkinter/__init__.py b/lib_pypy/_tkinter/__init__.py new fil

[pypy-commit] pypy default: A new copyright holder. Thanks!

2013-06-13 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r64873:d3c70e7a2523 Date: 2013-06-13 14:08 +0200 http://bitbucket.org/pypy/pypy/changeset/d3c70e7a2523/ Log:A new copyright holder. Thanks! diff --git a/LICENSE b/LICENSE --- a/LICENSE +++ b/LICENSE @@ -218,6 +218,7 @@ Impara, Germany

[pypy-commit] pypy numpypy-nditer: Implement the c_index and the f_index flags on the nditer class

2013-06-13 Thread rguillebert
Author: Romain Guillebert Branch: numpypy-nditer Changeset: r64874:cbc60b20e6c2 Date: 2013-06-13 20:01 +0200 http://bitbucket.org/pypy/pypy/changeset/cbc60b20e6c2/ Log:Implement the c_index and the f_index flags on the nditer class diff --git a/pypy/module/micronumpy/interp_nditer.py b/pypy

[pypy-commit] pypy numpypy-nditer: Add a test for nditers with mixed order

2013-06-13 Thread rguillebert
Author: Romain Guillebert Branch: numpypy-nditer Changeset: r64875:5a7505174934 Date: 2013-06-13 20:22 +0200 http://bitbucket.org/pypy/pypy/changeset/5a7505174934/ Log:Add a test for nditers with mixed order diff --git a/pypy/module/micronumpy/test/test_nditer.py b/pypy/module/micronumpy/te

[pypy-commit] pypy numpypy-nditer: Fix translation

2013-06-13 Thread rguillebert
Author: Romain Guillebert Branch: numpypy-nditer Changeset: r64876:0a0ae7e99b40 Date: 2013-06-13 20:35 +0200 http://bitbucket.org/pypy/pypy/changeset/0a0ae7e99b40/ Log:Fix translation diff --git a/pypy/module/micronumpy/interp_nditer.py b/pypy/module/micronumpy/interp_nditer.py --- a/pypy/m

[pypy-commit] stmgc default: Clean-ups in preparation for nursery.c

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r118:afd0da81c314 Date: 2013-06-13 22:25 +0200 http://bitbucket.org/pypy/stmgc/changeset/afd0da81c314/ Log:Clean-ups in preparation for nursery.c diff --git a/c4/dbgmem.c b/c4/dbgmem.c --- a/c4/dbgmem.c +++ b/c4/dbgmem.c @@ -6,58 +6,18 @@ #include

[pypy-commit] stmgc default: Start copying from c3 portions of code and tests.

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r119:e26c4be262b8 Date: 2013-06-13 22:49 +0200 http://bitbucket.org/pypy/stmgc/changeset/e26c4be262b8/ Log:Start copying from c3 portions of code and tests. diff --git a/c4/et.h b/c4/et.h --- a/c4/et.h +++ b/c4/et.h @@ -105,7 +105,6 @@ * thread shuts

[pypy-commit] stmgc default: stmgc_done_nursery()

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r120:e1d5588970ba Date: 2013-06-13 22:53 +0200 http://bitbucket.org/pypy/stmgc/changeset/e1d5588970ba/ Log:stmgc_done_nursery() diff --git a/c4/nursery.c b/c4/nursery.c --- a/c4/nursery.c +++ b/c4/nursery.c @@ -8,7 +8,7 @@ /**

[pypy-commit] pypy default: Add aliases for the float64 and string dtypes

2013-06-13 Thread rguillebert
Author: Romain Guillebert Branch: Changeset: r64877:c0ad61f37cbe Date: 2013-06-13 23:11 +0200 http://bitbucket.org/pypy/pypy/changeset/c0ad61f37cbe/ Log:Add aliases for the float64 and string dtypes diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/interp_dtype.p

[pypy-commit] stmgc default: Next test

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r122:03a8ca843df4 Date: 2013-06-13 23:20 +0200 http://bitbucket.org/pypy/stmgc/changeset/03a8ca843df4/ Log:Next test diff --git a/c4/dbgmem.c b/c4/dbgmem.c --- a/c4/dbgmem.c +++ b/c4/dbgmem.c @@ -9,7 +9,8 @@ #define MMAP_TOTAL 671088640 /* 640MB */

[pypy-commit] stmgc default: Copy more code, the next test passes

2013-06-13 Thread arigo
Author: Armin Rigo Branch: Changeset: r121:17c239320c14 Date: 2013-06-13 23:00 +0200 http://bitbucket.org/pypy/stmgc/changeset/17c239320c14/ Log:Copy more code, the next test passes diff --git a/c4/nursery.c b/c4/nursery.c --- a/c4/nursery.c +++ b/c4/nursery.c @@ -60,11 +60,20 @@ }

[pypy-commit] pypy default: Implement dtype.str. Try hard to do the same as cNumpy.

2013-06-13 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r64878:96ef4e26e420 Date: 2013-06-13 23:47 +0200 http://bitbucket.org/pypy/pypy/changeset/96ef4e26e420/ Log:Implement dtype.str. Try hard to do the same as cNumpy. diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/i

[pypy-commit] pypy default: Fill more values in array.__array_interface__

2013-06-13 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r64879:2ebf68f7c7be Date: 2013-06-14 00:12 +0200 http://bitbucket.org/pypy/pypy/changeset/2ebf68f7c7be/ Log:Fill more values in array.__array_interface__ diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_n