Author: Armin Rigo <[email protected]>
Branch:
Changeset: r91586:c2e3d0655f05
Date: 2017-06-12 07:22 +0200
http://bitbucket.org/pypy/pypy/changeset/c2e3d0655f05/
Log: _curses: Copy the version from cpython. (from linkmauve)
It is currently b'2.2'.
diff --git a/lib_pypy/_curses.py b/lib_pypy/_curses.py
--- a/lib_pypy/_curses.py
+++ b/lib_pypy/_curses.py
@@ -8,6 +8,9 @@
from _curses_cffi import ffi, lib
+version = b"2.2"
+__version__ = b"2.2"
+
def _copy_to_globals(name):
globals()[name] = getattr(lib, name)
@@ -60,10 +63,6 @@
_setup()
-# Do we want this?
-# version = "2.2"
-# __version__ = "2.2"
-
# ____________________________________________________________
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit