~ubuntu-branches/debian/sid/cde/sid

« back to all changes in this revision

Viewing changes to tests/chdir_abspath_test/chdir_abspath_test.py

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2012-02-03 19:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20120203192705-ll6f1nr45ead65ed
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# do a chdir into an absolute path and also getcwd
 
2
 
 
3
import os
 
4
 
 
5
os.chdir('/home/pgbovine')
 
6
f = open('tmp.txt', 'w')
 
7
f.close()
 
8
print 'getcwd:', os.getcwd()
 
9