comparison upreckon/files.py @ 212:1cbe2c428942

Cleaned up import statements
author Oleg Oshmyan <chortos@inbox.lv>
date Thu, 18 Aug 2011 17:17:15 +0300
parents c03a8113685d
children 7827e63cd148
comparison
equal deleted inserted replaced
211:78be952f6b40 212:1cbe2c428942
3 """File access routines and classes with support for archives.""" 3 """File access routines and classes with support for archives."""
4 4
5 from __future__ import division, with_statement 5 from __future__ import division, with_statement
6 6
7 from .compat import * 7 from .compat import *
8 import contextlib, itertools, os, posixpath, re, shutil, sys 8 import contextlib, os, posixpath, re, shutil
9 9
10 # You don't need to know about anything else. 10 # You don't need to know about anything else.
11 __all__ = 'File', 'regexp' 11 __all__ = 'File', 'regexp'
12 12
13 # In these two variables, use full stops no matter what os.extsep is; 13 # In these two variables, use full stops no matter what os.extsep is;