[python-beaker] add anydbm on py3 patch

Toshio くらとみ toshio at fedoraproject.org
Wed Sep 7 21:06:26 UTC 2011


commit 84da454dd3007875ce007aafb2e20eb774e9fe21
Author: Toshio Kuratomi <toshio at fedoraproject.org>
Date:   Wed Sep 7 14:06:02 2011 -0700

    add anydbm on py3 patch

 beaker-anydbm.patch |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)
---
diff --git a/beaker-anydbm.patch b/beaker-anydbm.patch
new file mode 100644
index 0000000..7de82c9
--- /dev/null
+++ b/beaker-anydbm.patch
@@ -0,0 +1,12 @@
+Index: Beaker-1.5.4/beaker/container.py
+===================================================================
+--- Beaker-1.5.4.orig/beaker/container.py
++++ Beaker-1.5.4/beaker/container.py
+@@ -1,5 +1,6 @@
+ """Container and Namespace classes"""
+-import anydbm
++# For python3 (will be converted as import dbsm as anydbm)
++import anydbm as anydbm
+ import cPickle
+ import logging
+ import os


More information about the scm-commits mailing list