[pypy-commit] pypy py3.5: Update test_whatsnew for renamed py3k -> py3.5.

mjacob pypy.commits at gmail.com
Wed Oct 11 20:50:20 EDT 2017


Author: Manuel Jacob <me at manueljacob.de>
Branch: py3.5
Changeset: r92727:8966e708ff7c
Date: 2017-10-12 02:29 +0200
http://bitbucket.org/pypy/pypy/changeset/8966e708ff7c/

Log:	Update test_whatsnew for renamed py3k -> py3.5.

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
@@ -89,7 +89,7 @@
     startrev, documented = parse_doc(last_whatsnew)
     merged, branch = get_merged_branches(ROOT, startrev, '')
     merged.discard('default')
-    merged.discard('py3k')
+    merged.discard('py3.5')
     merged.discard('')
     not_documented = merged.difference(documented)
     not_merged = documented.difference(merged)
@@ -100,7 +100,7 @@
     print '\n'.join(not_merged)
     print
     assert not not_documented
-    if branch == 'py3k':
+    if branch == 'py3.5':
         assert not not_merged
     else:
         assert branch in documented, 'Please document this branch before merging: %s' % branch


More information about the pypy-commit mailing list