~divmod-dev/divmod.org/trunk

« back to all changes in this revision

Viewing changes to Epsilon/testhotfix

  • Committer: Jean-Paul Calderone
  • Date: 2014-06-29 20:33:04 UTC
  • mfrom: (2749.1.1 remove-epsilon-1325289)
  • Revision ID: exarkun@twistedmatrix.com-20140629203304-gdkmbwl1suei4m97
mergeĀ lp:~exarkun/divmod.org/remove-epsilon-1325289

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
from epsilon import hotfix
3
 
from twisted.python import filepath
4
 
orig_a = filepath.FilePath('a')
5
 
hotfix.require('twisted', 'filepath_copyTo')
6
 
new_a = filepath.FilePath('a')
7
 
print orig_a == new_a
8
 
print orig_a.temporarySibling()