Author: Matti Picus <[email protected]>
Branch: py3.5
Changeset: r95002:d6a8f43fadd2
Date: 2018-08-13 09:37 -0700
http://bitbucket.org/pypy/pypy/changeset/d6a8f43fadd2/
Log: fix print statement
diff --git a/pypy/module/cpyext/test/test_datetime.py
b/pypy/module/cpyext/test/test_datetime.py
--- a/pypy/module/cpyext/test/test_datetime.py
+++ b/pypy/module/cpyext/test/test_datetime.py
@@ -308,7 +308,7 @@
# copied from datetime documentation
class GMT1(tzinfo):
def __del__(self):
- print 'deleting GMT1'
+ print('deleting GMT1')
def utcoffset(self, dt):
return timedelta(hours=1) + self.dst(dt)
def dst(self, dt):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit