File: remove-decorator.patch

package info (click to toggle)
pytools 2014.3-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 424 kB
  • ctags: 971
  • sloc: python: 4,037; makefile: 14
file content (18 lines) | stat: -rw-r--r-- 639 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Remove package's decorator as python-decorator package contains
 the same files.
Forwarded: not-needed
Author: Tomasz Rybak <bogomips@post.pl>
Last-Update: 2013-08-27
Index: pytools-2013.5.6/pytools/__init__.py
===================================================================
--- pytools-2013.5.6.orig/pytools/__init__.py	2013-07-17 22:43:09.000000000 +0200
+++ pytools-2013.5.6/pytools/__init__.py	2013-08-27 20:53:24.183002956 +0200
@@ -26,7 +26,7 @@
 import operator
 import sys
 
-from pytools.decorator import decorator
+from decorator import decorator
 
 try:
     decorator_module = __import__("decorator", level=0)