3 new commits in pytest:

https://bitbucket.org/hpk42/pytest/changeset/c12e50dc9e72/
changeset:   c12e50dc9e72
user:        hpk42
date:        2012-11-06 15:46:52
summary:     fix typo
affected #:  1 file

diff -r dc50e84356877e67abfb145f423236ec872108f4 -r 
c12e50dc9e7267b68fd42999edfa9d8beaf6d148 doc/en/announce/release-2.3.3.txt
--- a/doc/en/announce/release-2.3.3.txt
+++ b/doc/en/announce/release-2.3.3.txt
@@ -11,7 +11,7 @@
 
 - makes pytest work on py24 again (yes, people sometimes still need to use it)
 
-- show *,** args in pytest tracebacks
+- show ``*,**`` args in pytest tracebacks
 
 Thanks to Manuel Jacob, Thomas Waldmann, Ronny Pfannschmidt, Pavel Repin
 and Andreas Taumoefolau for providing patches and all for the issues.



https://bitbucket.org/hpk42/pytest/changeset/657bd61a148b/
changeset:   657bd61a148b
user:        hpk42
date:        2012-11-07 09:35:49
summary:     mention that jython-2.5.1 works
affected #:  1 file

diff -r c12e50dc9e7267b68fd42999edfa9d8beaf6d148 -r 
657bd61a148bb7d7dcd236e24139aa370452e1ac setup.py
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
   on `unittest <http://pytest.org/latest/unittest.html>`_ (or trial),
   `nose <http://pytest.org/latest/nose.html>`_
 - single-source compatibility to Python2.4 all the way up to Python3.3,
-  PyPy and Jython.
+  PyPy-1.9 and Jython-2.5.1.
 
 - many `external plugins 
<http://pytest.org/latest/plugins.html#installing-external-plugins-searching>`_.
 



https://bitbucket.org/hpk42/pytest/changeset/2737384b7149/
changeset:   2737384b7149
user:        hpk42
date:        2012-11-07 10:05:39
summary:     prolong workaround for jython AST bug 
http://bugs.jython.org/issue1497
to make pytest work for post-2.5.1 jython versions
affected #:  3 files

diff -r 657bd61a148bb7d7dcd236e24139aa370452e1ac -r 
2737384b71498a53f1dde1e01de09921a58cfc5e _pytest/__init__.py
--- a/_pytest/__init__.py
+++ b/_pytest/__init__.py
@@ -1,2 +1,2 @@
 #
-__version__ = '2.3.3'
+__version__ = '2.3.4.dev1'


diff -r 657bd61a148bb7d7dcd236e24139aa370452e1ac -r 
2737384b71498a53f1dde1e01de09921a58cfc5e _pytest/assertion/newinterpret.py
--- a/_pytest/assertion/newinterpret.py
+++ b/_pytest/assertion/newinterpret.py
@@ -11,7 +11,7 @@
 from _pytest.assertion.reinterpret import BuiltinAssertionError
 
 
-if sys.platform.startswith("java") and sys.version_info < (2, 5, 2):
+if sys.platform.startswith("java"):
     # See http://bugs.jython.org/issue1497
     _exprs = ("BoolOp", "BinOp", "UnaryOp", "Lambda", "IfExp", "Dict",
               "ListComp", "GeneratorExp", "Yield", "Compare", "Call",


diff -r 657bd61a148bb7d7dcd236e24139aa370452e1ac -r 
2737384b71498a53f1dde1e01de09921a58cfc5e setup.py
--- a/setup.py
+++ b/setup.py
@@ -48,7 +48,7 @@
         name='pytest',
         description='py.test: simple powerful testing with Python',
         long_description = long_description,
-        version='2.3.3',
+        version='2.3.4.dev1',
         url='http://pytest.org',
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
py-svn mailing list
py-svn@codespeak.net
http://codespeak.net/mailman/listinfo/py-svn

Reply via email to