make py lib a self-contained directory again

- move and merge _py/ bits back to py/
- fixes all around

--HG--
branch : trunk
This commit is contained in:
holger krekel
2009-11-04 21:34:07 +01:00
parent 4dd6c7679d
commit b04a04cabd
160 changed files with 294 additions and 281 deletions

View File

@@ -1,5 +1,5 @@
import py
from _py.path import svnwc as svncommon
from py.impl.path import svnwc as svncommon
svnbin = py.path.local.sysfind('svn')
repodump = py.path.local(__file__).dirpath('repotest.dump')

View File

@@ -1,6 +1,6 @@
import sys
import py
from _py.path import svnwc as svncommon
from py.impl.path import svnwc as svncommon
from testing.path.common import CommonFSTests
class CommonSvnTests(CommonFSTests):

View File

@@ -1,5 +1,5 @@
import py
from _py.path import cacheutil
from py.impl.path import cacheutil
class BasicCacheAPITest:
cache = None

View File

@@ -1,5 +1,5 @@
import py
from _py.path.svnurl import InfoSvnCommand
from py.impl.path.svnurl import InfoSvnCommand
import datetime
import time
from testing.path.svntestbase import CommonSvnTests

View File

@@ -1,7 +1,7 @@
import py
import sys
from _py.path.svnwc import InfoSvnWCCommand, XMLWCStatus, parse_wcinfotime
from _py.path import svnwc as svncommon
from py.impl.path.svnwc import InfoSvnWCCommand, XMLWCStatus, parse_wcinfotime
from py.impl.path import svnwc as svncommon
from testing.path.svntestbase import CommonSvnTests
if sys.platform == 'win32':