[pypy-commit] pypy stm: Forgot to add two files.

arigo noreply at buildbot.pypy.org
Thu Jan 19 18:21:22 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm
Changeset: r51496:4692940c82e4
Date: 2012-01-19 18:21 +0100
http://bitbucket.org/pypy/pypy/changeset/4692940c82e4/

Log:	Forgot to add two files.

diff --git a/pypy/module/transaction/app_transaction.py b/pypy/module/transaction/app_transaction.py
new file mode 100644
--- /dev/null
+++ b/pypy/module/transaction/app_transaction.py
@@ -0,0 +1,3 @@
+
+class TransactionError(Exception):
+    pass
diff --git a/pypy/module/transaction/test/test_ztranslation.py b/pypy/module/transaction/test/test_ztranslation.py
new file mode 100644
--- /dev/null
+++ b/pypy/module/transaction/test/test_ztranslation.py
@@ -0,0 +1,4 @@
+from pypy.objspace.fake.checkmodule import checkmodule
+
+def test_checkmodule():
+    checkmodule('transaction')


More information about the pypy-commit mailing list