Author: Philip Jenvey <[email protected]>
Branch:
Changeset: r65488:bd08271bef4a
Date: 2013-07-19 16:00 -0700
http://bitbucket.org/pypy/pypy/changeset/bd08271bef4a/
Log: fill in is_none
diff --git a/pypy/tool/pytest/objspace.py b/pypy/tool/pytest/objspace.py
--- a/pypy/tool/pytest/objspace.py
+++ b/pypy/tool/pytest/objspace.py
@@ -94,6 +94,9 @@
def is_true(self, obj):
return bool(obj)
+ def is_none(self, obj):
+ return obj is None
+
def str_w(self, w_str):
return w_str
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit