From 5b7c19ec6a851b706bc26fe8352934de3291cc87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 2 May 2017 15:26:50 +0200 Subject: dev-python/paste: Clean old versions up --- dev-python/paste/files/paste-1.7.5.1-python27-lambda.patch | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 dev-python/paste/files/paste-1.7.5.1-python27-lambda.patch (limited to 'dev-python/paste/files/paste-1.7.5.1-python27-lambda.patch') diff --git a/dev-python/paste/files/paste-1.7.5.1-python27-lambda.patch b/dev-python/paste/files/paste-1.7.5.1-python27-lambda.patch deleted file mode 100644 index 91dcad137153d..0000000000000 --- a/dev-python/paste/files/paste-1.7.5.1-python27-lambda.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -r 30425672adf7 paste/auth/cookie.py ---- a/paste/auth/cookie.py Wed Jun 23 17:15:45 2010 -0500 -+++ b/paste/auth/cookie.py Mon Aug 02 20:06:43 2010 -0700 -@@ -62,7 +62,7 @@ - _decode = [(v, k) for (k, v) in _encode] - _decode.reverse() - def encode(s, sublist = _encode): -- return reduce((lambda a, (b, c): a.replace(b, c)), sublist, str(s)) -+ return reduce((lambda a, b: a.replace(b[0], b[1])), sublist, str(s)) - decode = lambda s: encode(s, _decode) - - class CookieTooLarge(RuntimeError): -- cgit v1.2.3