[Python-modules-commits] r33349 - in packages/circuits/trunk/debian (3 files)
eriol-guest at users.alioth.debian.org
eriol-guest at users.alioth.debian.org
Sun Jul 12 14:58:00 UTC 2015
Date: Sunday, July 12, 2015 @ 14:57:59
Author: eriol-guest
Revision: 33349
Remove 04_fix-python3-sintax-error.patch since it is not needed anymore
Modified:
packages/circuits/trunk/debian/changelog
packages/circuits/trunk/debian/patches/series
Deleted:
packages/circuits/trunk/debian/patches/04_fix-python3-sintax-error.patch
Modified: packages/circuits/trunk/debian/changelog
===================================================================
--- packages/circuits/trunk/debian/changelog 2015-07-11 22:07:24 UTC (rev 33348)
+++ packages/circuits/trunk/debian/changelog 2015-07-12 14:57:59 UTC (rev 33349)
@@ -5,8 +5,10 @@
- Use pypi.debian.net redirector.
* debian/patches/01_disable_sphinxcontrib_extensions.patch
- Refresh.
+ * debian/patches/04_fix-python3-sintax-error.patch
+ - Remove since it is not needed anymore.
- -- Daniele Tricoli <eriol at mornie.org> Sat, 11 Jul 2015 20:27:12 +0200
+ -- Daniele Tricoli <eriol at mornie.org> Sun, 12 Jul 2015 16:53:14 +0200
circuits (2.1.0-2) unstable; urgency=low
Deleted: packages/circuits/trunk/debian/patches/04_fix-python3-sintax-error.patch
===================================================================
--- packages/circuits/trunk/debian/patches/04_fix-python3-sintax-error.patch 2015-07-11 22:07:24 UTC (rev 33348)
+++ packages/circuits/trunk/debian/patches/04_fix-python3-sintax-error.patch 2015-07-12 14:57:59 UTC (rev 33349)
@@ -1,27 +0,0 @@
-Description: Fix sintax errors since print and exec are not keywords in Python3
-Author: Daniele Tricoli <eriol at mornie.org>
---- a/circuits/web/apps/memorymonitor/reftree.py
-+++ b/circuits/web/apps/memorymonitor/reftree.py
-@@ -172,9 +172,9 @@
- """Walk the object tree, pretty-printing each branch."""
- self.ignore_caller()
- for trail in self.walk(maxresults, maxdepth):
-- print trail
-+ print (trail)
- if self.stops:
-- print "%s paths stopped because max depth reached" % self.stops
-+ print ("%s paths stopped because max depth reached" % self.stops)
-
-
- def count_objects():
---- a/circuits/web/apps/webconsole/__init__.py
-+++ b/circuits/web/apps/webconsole/__init__.py
-@@ -56,7 +56,7 @@
- sys.stdout = sys.stderr = out
- try:
- try:
-- exec code in self.locals
-+ exec (code in self.locals)
- except:
- result = traceback.format_exc()
- else:
Modified: packages/circuits/trunk/debian/patches/series
===================================================================
--- packages/circuits/trunk/debian/patches/series 2015-07-11 22:07:24 UTC (rev 33348)
+++ packages/circuits/trunk/debian/patches/series 2015-07-12 14:57:59 UTC (rev 33349)
@@ -1,5 +1,4 @@
01_disable_sphinxcontrib_extensions.patch
02_remove_templatebuiltins_js.patch
03_disable-address-check.patch
-04_fix-python3-sintax-error.patch
05_fix-pil-import.patch
More information about the Python-modules-commits
mailing list