summaryrefslogtreecommitdiffstats
path: root/redhat/applications/koffice/koffice-3.5.13-kross_utilities_syntax.patch
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2015-04-19 15:24:00 +0200
committerFrançois Andriot <albator78@libertysurf.fr>2015-04-19 15:24:00 +0200
commit47b9cb5f610258da5818461ffcb4b97cfacd649b (patch)
tree6593f97816e32d408bb117ef2dd17d061fd4039e /redhat/applications/koffice/koffice-3.5.13-kross_utilities_syntax.patch
parent17e804faf6d943909d4285bf7e1fe743151b63b2 (diff)
downloadtde-packaging-47b9cb5f610258da5818461ffcb4b97cfacd649b.tar.gz
tde-packaging-47b9cb5f610258da5818461ffcb4b97cfacd649b.zip
RPM packaging: update knutclient, koffice, koffice-i18n, konversation, kopete-otr
Diffstat (limited to 'redhat/applications/koffice/koffice-3.5.13-kross_utilities_syntax.patch')
-rw-r--r--redhat/applications/koffice/koffice-3.5.13-kross_utilities_syntax.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/redhat/applications/koffice/koffice-3.5.13-kross_utilities_syntax.patch b/redhat/applications/koffice/koffice-3.5.13-kross_utilities_syntax.patch
deleted file mode 100644
index db24095b3..000000000
--- a/redhat/applications/koffice/koffice-3.5.13-kross_utilities_syntax.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- koffice/lib/kross/python/scripts/RestrictedPython/Utilities.py.ORI 2011-11-25 00:13:38.356036607 +0100
-+++ koffice/lib/kross/python/scripts/RestrictedPython/Utilities.py 2011-11-25 00:14:16.794035577 +0100
-@@ -46,11 +46,11 @@
- if l%2: return args[-1]
- utility_builtins['test'] = test
-
--def reorder(s, with=None, without=()):
-- # s, with, and without are sequences treated as sets.
-- # The result is subtract(intersect(s, with), without),
-- # unless with is None, in which case it is subtract(s, without).
-- if with is None: with=s
-+def reorder(s, swith=None, swithout=()):
-+ # s, swith, and swithout are sequences treated as sets.
-+ # The result is subtract(intersect(s, swith), swithout),
-+ # unless swith is None, in which case it is subtract(s, swithout).
-+ if swith is None: swith=s
- d={}
- tt=type(())
- for i in s:
-@@ -61,12 +61,12 @@
- a=r.append
- h=d.has_key
-
-- for i in without:
-+ for i in swithout:
- if type(i) is tt and len(i)==2: k, v = i
- else: k= v = i
- if h(k): del d[k]
-
-- for i in with:
-+ for i in swith:
- if type(i) is tt and len(i)==2: k, v = i
- else: k= v = i
- if h(k):