use conventional whitespace in interactive example

This commit is contained in:
Fred Drake 2003-12-31 07:41:52 +00:00
parent 50e7a11af1
commit a180581511
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ in place, a \character{/} to each path which points to a directory.
\begin{verbatim}
>>> import dircache
>>> a=dircache.listdir('/')
>>> a=a[:] # Copy the return value so we can change 'a'
>>> a = dircache.listdir('/')
>>> a = a[:] # Copy the return value so we can change 'a'
>>> a
['bin', 'boot', 'cdrom', 'dev', 'etc', 'floppy', 'home', 'initrd', 'lib', 'lost+
found', 'mnt', 'proc', 'root', 'sbin', 'tmp', 'usr', 'var', 'vmlinuz']