summaryrefslogtreecommitdiff
path: root/devel/py-utils/files/patch-python25
blob: f87e7c74aaec87465aea1adf8008ffca4db96396 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
--- pythonutils/pathutils.py.orig	Fri Mar 30 06:39:37 2007
+++ pythonutils/pathutils.py	Fri Mar 30 06:39:49 2007
@@ -14,13 +14,13 @@
 # Scripts maintained at http://www.voidspace.org.uk/python/index.shtml
 # E-mail fuzzyman@voidspace.org.uk
 
+from __future__ import generators
 """
 This module contains convenience functions for working with files and paths.
 """
 
 __version__ = '0.2.4'
 
-from __future__ import generators
 import os
 import sys
 import time
--- pythonutils/odict.py.orig	Fri Mar 30 06:41:25 2007
+++ pythonutils/odict.py	Fri Mar 30 06:41:35 2007
@@ -14,6 +14,7 @@
 # http://groups.google.com/group/pythonutils/
 # Comments, suggestions and bug reports welcome.
 
+from __future__ import generators
 """A dict that keeps keys in insertion order"""
 
 __author__ = ('Nicola Larosa <nico-NoSp@m-tekNico.net>,'
@@ -27,7 +28,6 @@
 
 __all__ = ['OrderedDict', 'SequenceOrderedDict']
 
-from __future__ import generators
 from warnings import warn
 from types import SliceType