[pypy-commit] pypy default: fix whatsnew

2018-10-27 Thread mattip
Author: Matti Picus 
Branch: 
Changeset: r95256:9b4df13073e1
Date: 2018-10-27 22:34 +0300
http://bitbucket.org/pypy/pypy/changeset/9b4df13073e1/

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/whatsnew-head.rst
@@ -39,3 +39,15 @@
 
 .. branch: fix-readme-typo
 
+.. branch: avoid_shell_injection_in_shutil
+
+Backport CPython fix for possible shell injection issue in `distutils.spawn`,
+https://bugs.python.org/issue34540
+
+.. branch: cffi_dlopen_unicode
+
+Enable use of unicode file names in `dlopen`
+
+.. branch: rlock-in-rpython
+
+Backport CPython fix for `thread.RLock` 
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew, fix test for windows (with modified command.py to allow test to run)

2016-11-07 Thread mattip
Author: Matti Picus 
Branch: 
Changeset: r88167:f826843099a7
Date: 2016-11-07 14:07 +0200
http://bitbucket.org/pypy/pypy/changeset/f826843099a7/

Log:fix whatsnew, fix test for windows (with modified command.py to
allow test to run)

diff --git a/pypy/doc/test/test_whatsnew.py b/pypy/doc/test/test_whatsnew.py
--- a/pypy/doc/test/test_whatsnew.py
+++ b/pypy/doc/test/test_whatsnew.py
@@ -110,4 +110,4 @@
 "hg log -r %s --template '{branch}'" % startrev)
 if errcode != 0:
 py.test.skip('no Mercurial repo')
-assert wc_branch == 'default'
+assert wc_branch in ('default', "'default'") # sometimes the ' leaks 
(windows)
diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -100,3 +100,8 @@
 .. branch: newinitwarn
 
 Match CPython's stricter handling of __new/init__ arguments
+
+.. branch: openssl-1.1
+
+Support for OpenSSL version 1.1 (in addition to version 1.0).
+Tested on Linux (1.1, 1.0), on Win32, and Mac (1.0 only)
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2016-03-25 Thread fijal
Author: fijal
Branch: 
Changeset: r83365:857e78c019da
Date: 2016-03-25 20:55 +0200
http://bitbucket.org/pypy/pypy/changeset/857e78c019da/

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/whatsnew-head.rst
@@ -27,3 +27,8 @@
 .. branch: fix_transpose_for_list_v3
 
 Allow arguments to transpose to be sequences
+
+.. branch: jit-leaner-frontend
+
+Improve the tracing speed in the frontend as well as heapcache by using a more 
compact representation
+of traces
\ No newline at end of file
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2016-02-25 Thread fijal
Author: fijal
Branch: 
Changeset: r82520:a3552a8e8c2c
Date: 2016-02-25 17:55 +0100
http://bitbucket.org/pypy/pypy/changeset/a3552a8e8c2c/

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/whatsnew-head.rst
@@ -170,4 +170,17 @@
 
 When creating instances and adding attributes in several different orders
 depending on some condition, the JIT would create too much code. This is now
-fixed.
\ No newline at end of file
+fixed.
+
+.. branch: cpyext-gc-support-2
+
+Improve CPython C API support, which means lxml now runs unmodified
+(after removing pypy hacks, pending pull request)
+
+.. branch: look-inside-tuple-hash
+
+Look inside tuple hash, improving mdp benchmark
+
+.. branch: vlen-resume
+
+Compress resume data, saving 10-20% of memory consumed by the JIT
\ No newline at end of file
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew for merged branch

2015-11-24 Thread mattip
Author: mattip 
Branch: 
Changeset: r80897:51561caea1d9
Date: 2015-11-24 18:53 +0200
http://bitbucket.org/pypy/pypy/changeset/51561caea1d9/

Log:fix whatsnew for merged branch

diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -15,4 +15,10 @@
 Fix the cpyext tests on OSX by linking with -flat_namespace
 
 .. branch: anntype
+
 Refactor and improve exception analysis in the annotator.
+
+.. branch: posita/2193-datetime-timedelta-integrals
+
+Fix issue #2193. ``isinstance(..., int)`` => ``isinstance(..., 
numbers.Integral)`` 
+to allow for alternate ``int``-like implementations (e.g., 
``future.types.newint``)
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: Fix whatsnew

2015-05-20 Thread arigo
Author: Armin Rigo ar...@tunes.org
Branch: 
Changeset: r77421:ce9daaa5437c
Date: 2015-05-20 10:41 +0200
http://bitbucket.org/pypy/pypy/changeset/ce9daaa5437c/

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/whatsnew-head.rst
@@ -114,3 +114,7 @@
 
 branch numpy-flags
 Finish implementation of ndarray.flags, including str() and repr()
+
+.. branch: cffi-1.0
+
+PyPy now includes CFFI 1.0.
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2015-04-14 Thread rlamy
Author: Ronan Lamy ronan.l...@gmail.com
Branch: 
Changeset: r76790:e10aecf11072
Date: 2015-04-15 01:39 +0100
http://bitbucket.org/pypy/pypy/changeset/e10aecf11072/

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/whatsnew-head.rst
@@ -21,3 +21,5 @@
 Make `*`-unpacking in RPython function calls completely equivalent to passing
 the tuple's elements as arguments. In other words, `f(*(a, b))` now behaves 
 exactly like `f(a, b)`.
+
+.. branch: issue2018
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-05-08 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r71427:0125c920eee7
Date: 2014-05-08 18:44 -0400
http://bitbucket.org/pypy/pypy/changeset/0125c920eee7/

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/whatsnew-head.rst
@@ -3,4 +3,4 @@
 ===
 
 .. this is a revision shortly after release-2.3.x
-.. startrev: b2cc67adbaad
+.. startrev: f556d32f8319
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-05-02 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r71213:6066ed126e77
Date: 2014-05-02 21:20 -0400
http://bitbucket.org/pypy/pypy/changeset/6066ed126e77/

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/whatsnew-head.rst
@@ -3,5 +3,5 @@
 ===
 
 .. this is a revision shortly after release-2.3.x
-.. startrev: 0f75ad4d14ce
+.. startrev: 773fc6275c69
 
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-05-02 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r71217:5ff0f9f58158
Date: 2014-05-02 21:24 -0400
http://bitbucket.org/pypy/pypy/changeset/5ff0f9f58158/

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/whatsnew-head.rst
@@ -5,3 +5,5 @@
 .. this is a revision shortly after release-2.3.x
 .. startrev: 773fc6275c69
 
+.. branch: fix-tpname
+Changes hacks surrounding W_TypeObject.name to match CPython's tp_name
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-05-01 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r71137:643e652b0b55
Date: 2014-05-01 11:22 -0400
http://bitbucket.org/pypy/pypy/changeset/643e652b0b55/

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/whatsnew-head.rst
@@ -5,4 +5,4 @@
 .. this is a revision shortly after release-2.3.x
 .. startrev: 0524dae88c75
 
-
+.. branch: reflex-support
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-04-24 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r70949:ba1169097696
Date: 2014-04-24 17:38 -0400
http://bitbucket.org/pypy/pypy/changeset/ba1169097696/

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/whatsnew-head.rst
@@ -9,3 +9,6 @@
 Improve optimiziation of small allocation-heavy loops in the JIT
 
 .. branch: reflex-support
+
+.. branch: refactor-buffer-api
+Properly implement old/new buffer API for objects and start work on replacing 
bufferstr usage
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-04-23 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r70896:134a1a7ab792
Date: 2014-04-23 18:04 -0400
http://bitbucket.org/pypy/pypy/changeset/134a1a7ab792/

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/whatsnew-head.rst
@@ -5,7 +5,7 @@
 .. this is a revision shortly after release-2.3.x
 .. startrev: ba569fe1efdb
 
-
-
 .. branch: small-unroll-improvements
 Improve optimiziation of small allocation-heavy loops in the JIT
+
+.. branch: reflex-support
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-04-16 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r70667:db4a8be80c49
Date: 2014-04-16 12:43 -0400
http://bitbucket.org/pypy/pypy/changeset/db4a8be80c49/

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/whatsnew-head.rst
@@ -133,4 +133,7 @@
 
 .. branch: ast-issue1673
 fix ast classes __dict__ are always empty problem and fix the ast deepcopy 
issue when 
-there is missing field
\ No newline at end of file
+there is missing field
+
+.. branch: issue1514
+Fix issues with reimporting builtin modules
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-04-16 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r70679:cf13db4663c3
Date: 2014-04-16 19:48 -0400
http://bitbucket.org/pypy/pypy/changeset/cf13db4663c3/

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/whatsnew-head.rst
@@ -137,3 +137,5 @@
 
 .. branch: issue1514
 Fix issues with reimporting builtin modules
+
+.. branch: numpypy-nditer
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-03-16 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r69987:4428f691da85
Date: 2014-03-16 18:12 -0400
http://bitbucket.org/pypy/pypy/changeset/4428f691da85/

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/whatsnew-head.rst
@@ -105,3 +105,6 @@
 
 .. branch: stdlib-2.7.6
 Update stdlib to v2.7.6
+
+.. branch: virtual-raw-store-load
+Support for virtualizing raw_store/raw_load operations
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2014-02-27 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r69528:5fda2607f040
Date: 2014-02-27 18:35 -0500
http://bitbucket.org/pypy/pypy/changeset/5fda2607f040/

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/whatsnew-head.rst
@@ -85,3 +85,6 @@
 
 .. branch: remove-intlong-smm
 kills int/long/smalllong/bool multimethods
+
+.. branch: numpy-refactor
+Cleanup micronumpy module
___
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-08-20 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com
Branch: 
Changeset: r66249:8e21ac4a4e52
Date: 2013-08-20 09:12 +0200
http://bitbucket.org/pypy/pypy/changeset/8e21ac4a4e52/

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/whatsnew-head.rst
@@ -74,3 +74,4 @@
 .. branch: dotviewer-linewidth
 .. branch: reflex-support
 .. branch: numpypy-inplace-op
+.. branch: rewritten-loop-logging
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-07-14 Thread liquibits
Author: Pawe? Piotr Przeradowski showerproo...@gmail.com
Branch: 
Changeset: r65376:d109ca05cdf6
Date: 2013-07-14 01:31 +0200
http://bitbucket.org/pypy/pypy/changeset/d109ca05cdf6/

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/whatsnew-head.rst
@@ -16,3 +16,7 @@
 .. branch: flowoperators
 Simplify rpython/flowspace/ code by using more metaprogramming.  Create
 SpaceOperator class to gather static information about flow graph operations.
+
+.. branch: package-tk
+Adapt package.py script to compile CFFI tk extension. Add a --without-tk switch
+to optionally skip it.
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-07-10 Thread antocuni
Author: Antonio Cuni anto.c...@gmail.com
Branch: 
Changeset: r65318:5e3c9717930a
Date: 2013-07-10 16:04 +0200
http://bitbucket.org/pypy/pypy/changeset/5e3c9717930a/

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/whatsnew-head.rst
@@ -5,3 +5,10 @@
 .. this is a revision shortly after release-2.1-beta
 .. startrev: 4eb52818e7c0
 
+.. branch: fastjson
+Fast json decoder written in RPython, about 3-4x faster than the pure Python
+decoder which comes with the stdlib
+
+.. branch: improve-str2charp
+Improve the performance of I/O writing up to 15% by using memcpy instead of
+copying char-by-char in str2charp and get_nonmovingbuffer
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-07-03 Thread bivab
Author: David Schneider david.schnei...@picle.org
Branch: 
Changeset: r65169:15b0489c15d8
Date: 2013-07-03 10:15 +0200
http://bitbucket.org/pypy/pypy/changeset/15b0489c15d8/

Log:fix whatsnew

diff --git a/pypy/doc/whatsnew-2.1.rst b/pypy/doc/whatsnew-2.1.rst
--- a/pypy/doc/whatsnew-2.1.rst
+++ b/pypy/doc/whatsnew-2.1.rst
@@ -5,6 +5,9 @@
 .. this is a revision shortly after release-2.0
 .. startrev: a13c07067613
 
+.. branch: ndarray-ptp
+put and array.put
+
 .. branch: numpy-pickle
 Pickling of numpy arrays and dtypes (including record dtypes)
 
diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -5,6 +5,9 @@
 .. this is a revision shortly after release-2.0
 .. startrev: a13c07067613
 
+.. branch: ndarray-ptp
+put and array.put
+
 .. branch: numpy-pickle
 Pickling of numpy arrays and dtypes (including record dtypes)
 
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-05-15 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com
Branch: 
Changeset: r64174:4e5b27e8c621
Date: 2013-05-15 17:06 +0200
http://bitbucket.org/pypy/pypy/changeset/4e5b27e8c621/

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/whatsnew-head.rst
@@ -10,3 +10,9 @@
 
 .. branch: numpy-subarrays
 It is now possible to create arrays and dtypes that use subarrays
+
+.. branch: remove-array-smm
+Remove multimethods in the arraymodule
+
+.. branch: callback-stacklet
+Fixed bug when switching stacklets from a C callback
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-04-16 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com
Branch: 
Changeset: r63400:54d761c69466
Date: 2013-04-16 11:24 +0200
http://bitbucket.org/pypy/pypy/changeset/54d761c69466/

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/whatsnew-head.rst
@@ -129,3 +129,5 @@
 
 .. branch: release-2.0-beta2
 .. branch: unbreak-freebsd
+
+.. branch: virtualref-virtualizable
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-04-11 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r63231:d0619faead05
Date: 2013-04-11 10:09 -0400
http://bitbucket.org/pypy/pypy/changeset/d0619faead05/

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/whatsnew-head.rst
@@ -125,3 +125,4 @@
 cffi implementation of sqlite3
 
 .. branch: release-2.0-beta2
+.. branch: unbreak-freebsd
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-04-05 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r63076:d34ad891ac19
Date: 2013-04-05 20:22 -0400
http://bitbucket.org/pypy/pypy/changeset/d34ad891ac19/

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/whatsnew-head.rst
@@ -115,9 +115,9 @@
 .. branch: remove-list-smm
 .. branch: bridge-logging
 .. branch: curses_cffi
-
 cffi implementation of _curses
 
 .. branch: sqlite-cffi
+cffi implementation of sqlite3
 
-cffi implementation of sqlite3
+.. branch: release-2.0-beta2
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-04-03 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com
Branch: 
Changeset: r62937:63d97a479555
Date: 2013-04-03 08:24 +0200
http://bitbucket.org/pypy/pypy/changeset/63d97a479555/

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/whatsnew-head.rst
@@ -114,3 +114,4 @@
 .. branch: extregistry-refactor
 
 .. branch: remove-list-smm
+.. branch: bridge-logging
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-04-03 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com
Branch: 
Changeset: r62952:bb586782e481
Date: 2013-04-03 10:02 +0200
http://bitbucket.org/pypy/pypy/changeset/bb586782e481/

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/whatsnew-head.rst
@@ -115,3 +115,6 @@
 
 .. branch: remove-list-smm
 .. branch: bridge-logging
+.. branch: curses_cffi
+
+cffi implementation of _curses
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-04-03 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com
Branch: 
Changeset: r62984:bcfaa7d5bb72
Date: 2013-04-03 16:27 +0200
http://bitbucket.org/pypy/pypy/changeset/bcfaa7d5bb72/

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/whatsnew-head.rst
@@ -117,3 +117,7 @@
 .. branch: curses_cffi
 
 cffi implementation of _curses
+
+.. branch: sqlite-cffi
+
+cffi implementation of sqlite3
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-03-22 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r62656:d8b3fa6d3585
Date: 2013-03-22 07:21 -0400
http://bitbucket.org/pypy/pypy/changeset/d8b3fa6d3585/

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/whatsnew-head.rst
@@ -106,3 +106,5 @@
 
 .. branch: pycon2013-doc-fixes
 Documentation fixes after going through the docs at PyCon 2013 sprint.
+
+.. branch: extregistry-refactor
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-03-22 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com
Branch: 
Changeset: r62668:f001c220bcc4
Date: 2013-03-22 16:42 -0700
http://bitbucket.org/pypy/pypy/changeset/f001c220bcc4/

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/whatsnew-head.rst
@@ -108,3 +108,5 @@
 Documentation fixes after going through the docs at PyCon 2013 sprint.
 
 .. branch: extregistry-refactor
+
+.. branch: remove-list-smm
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-03-15 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r62361:c6ce849b9749
Date: 2013-03-15 16:29 -0400
http://bitbucket.org/pypy/pypy/changeset/c6ce849b9749/

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/whatsnew-head.rst
@@ -42,6 +42,7 @@
 .. branch: numpy-unify-methods
 .. branch: fix-version-tool
 .. branch: popen2-removal
+.. branch: pickle-dumps
 
 .. branch: release-2.0-beta1
 
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-02-27 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r61873:5c244127af74
Date: 2013-02-27 21:05 -0500
http://bitbucket.org/pypy/pypy/changeset/5c244127af74/

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/whatsnew-head.rst
@@ -79,3 +79,6 @@
 
 .. branch: cleanup-numpypy-namespace
 Cleanup _numpypy and numpypy namespaces to more closely resemble numpy.
+
+.. branch: kill-flowobjspace
+Random cleanups to hide FlowObjSpace from public view.
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-02-22 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r61630:020ca3b84fdb
Date: 2013-02-22 19:22 -0500
http://bitbucket.org/pypy/pypy/changeset/020ca3b84fdb/

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/whatsnew-head.rst
@@ -68,6 +68,7 @@
 
 .. branch: coding-guide-update-rlib-refs
 .. branch: rlib-doc-rpython-refs
+.. branch: clean-up-remaining-pypy-rlib-refs
 
 .. branch: enumerate-rstr
 Support enumerate() over rstr types.
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-02-12 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r61157:df3aa2beb60f
Date: 2013-02-12 19:40 -0500
http://bitbucket.org/pypy/pypy/changeset/df3aa2beb60f/

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/whatsnew-head.rst
@@ -58,3 +58,6 @@
 .. branch: cleanup-tests
 Consolidated the lib_pypy/pypy_test and pypy/module/test_lib_pypy tests into
 +one directory for reduced confusion and so they all run nightly.
+
+.. branch: unquote-faster
+.. branch: urlparse-unquote-faster
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-02-05 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r60895:43221081dc07
Date: 2013-02-06 00:27 -0500
http://bitbucket.org/pypy/pypy/changeset/43221081dc07/

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/whatsnew-head.rst
@@ -37,6 +37,7 @@
 .. branch: fix-e4fa0b2
 .. branch: win32-fixes
 .. branch: fix-version-tool
+.. branch: popen2-removal
 
 .. branch: release-2.0-beta1
 
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew for merged branches

2013-01-27 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r60536:60c48ee502e1
Date: 2013-01-27 13:58 -0500
http://bitbucket.org/pypy/pypy/changeset/60c48ee502e1/

Log:fix whatsnew for merged branches

diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -34,6 +34,8 @@
 .. branch: kill-faking
 .. branch: improved_ebnfparse_error
 .. branch: task-decorator
+.. branch: fix-e4fa0b2
+.. branch: win32-fixes
 
 .. branch: release-2.0-beta1
 
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2013-01-27 Thread bdkearns
Author: Brian Kearns bdkea...@gmail.com
Branch: 
Changeset: r60560:02e6ddae5c1d
Date: 2013-01-27 16:19 -0500
http://bitbucket.org/pypy/pypy/changeset/02e6ddae5c1d/

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/whatsnew-head.rst
@@ -36,6 +36,7 @@
 .. branch: task-decorator
 .. branch: fix-e4fa0b2
 .. branch: win32-fixes
+.. branch: fix-version-tool
 
 .. branch: release-2.0-beta1
 
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2012-10-12 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com
Branch: 
Changeset: r58081:0c8cf6db2041
Date: 2012-10-12 20:04 +0200
http://bitbucket.org/pypy/pypy/changeset/0c8cf6db2041/

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/whatsnew-head.rst
@@ -38,7 +38,8 @@
 
 .. branch: numpypy-complex2
 Complex dtype support for numpy
-
+.. branch: kill-someobject
+major cleanups including killing some object support
 
 
 .. uninteresting branches that we should just ignore for the whatsnew:
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit


[pypy-commit] pypy default: fix whatsnew

2012-09-11 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com
Branch: 
Changeset: r57290:370d278d5eeb
Date: 2012-09-11 16:04 +0200
http://bitbucket.org/pypy/pypy/changeset/370d278d5eeb/

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/whatsnew-head.rst
@@ -16,6 +16,8 @@
 
 .. branch: iterator-in-rpython
 .. branch: numpypy_count_nonzero
+.. branch: numpy-refactor
+Remove numpy lazy evaluation and simplify everything
 .. branch: even-more-jit-hooks
 Implement better JIT hooks
 .. branch: virtual-arguments
___
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit