Python 2.5.1 broken os.stat module

J

Joe Salmeri

I just upgraded from Python 2.4.2 to Python 2.5.1 and have found some
unexpected behavior that appears to be a bug in the os.stat module.

My OS is Windows XP SP2 + all updates.

I have several programs that have worked flawlessly on all previous Python
versions for years and they are now producing incorrect results in the code
that uses os.stat.

Searching through the 2.5.1 release notes I found the following:

Use Win32 API to implement os.stat/fstat. As a result, subsecond
timestamps
are reported, the limit on path name lengths is removed, and stat
reports
WindowsError now (instead of OSError).

*********************
* Overview of the problem:
*********************

Reviewing my code it seems that it should still work with the 2.5.1 os.stat
changes however that does not appear to be the case.

Timestamps reported by os.stat() are no longer correct and the results are
not even consistent.

In my first test case ALL 3 timestamps reported by Python are 1 hour less
than the actual timestamp on the file.

In my second test case the created and last accessed timestamps reported by
Python are correct but the last write timestamp is 1 hour less than the
actual timestamp on the file.

As a third test I looked at the last write timestamps on approximately
21,000 files.
Python determined wrong last write timestamp on approximately 1581 files.

Assuming there is no error in the following code that prints out the
timestamps using the new return value from os.stat() then it would appear
that the 2.5.1 os.stat changes have a bug.

print 'Creation Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_CTIME]))
print 'Last Access Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_ATIME]))
print 'Last Write Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_MTIME]))


*********************
* Detailed test results
*********************

To demonstrate the problem I have created the following test.

Here are the files that will be used in my test and their associated
timestamps as reported the the dir command.

01/02/2003 12:34 PM 0 broke_test
03/06/2007 05:24 PM 3,497,177 broke_test2
05/31/2007 04:35 PM 254 runtest.cmd
05/31/2007 04:31 PM 513 broke.py

The file named broke_test has a timestamp of 01/02/2003 12:34:56 (dir does
not show seconds).

The runtest.cmd script shows the created, last accessed, and last write
timestamps as reported by the dir command (and also verified via right
clicking on the file and selecting properties in Explorer.

------ >>> START runtest.cmd script <<<<
@Echo Off

echo Create TimeStamp reported by dir command
dir /tc %1

echo Last Access TimeStamp reported by dir command
dir /ta %1

echo Last Write TimeStamp reported by dir command
dir /tw %1

echo Python 2.5.1 timestamp info
broke.py %1

------ >>> END runtest.cmd script <<<<

The broke.py script prints out the created, last accessed, last write
timestamps as Python sees them.

------ >>> START broke.py script <<<<
import sys
import os
import stat
import time

file_name = sys.argv[1]

file_stats = os.stat(file_name)

print
print 'File Name : %s' % (file_name)
print
print 'Creation Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_CTIME]))
print 'Last Access Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_ATIME]))
print 'Last Write Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_MTIME]))
print

------ >>> END broke.py script <<<<

#
# Test 1 on file broke_test
#

runtest broke_test

Create TimeStamp reported by dir command

01/02/2003 12:34 PM 0 broke_test

Last Access TimeStamp reported by dir command

01/02/2003 12:34 PM 0 broke_test

Last Write TimeStamp reported by dir command

01/02/2003 12:34 PM 0 broke_test

Python 2.5.1 timestamp info

File Name : broke_test

Creation Time: 01/02/2003 11:34:56 -- Python results are WRONG hours
reported are 1 hour short
Last Access Time: 01/02/2003 11:34:56 -- Python results are WRONG hours
reported are 1 hour short
Last Write Time: 01/02/2003 11:34:56 -- Python results are WRONG hours
reported are 1 hour short

#
# Test 2 on file broke_test2
#

runtest broke_test2

Create TimeStamp reported by dir command

05/31/2007 04:26 PM 3,497,177 broke_test2

Last Access TimeStamp reported by dir command

05/31/2007 04:26 PM 3,497,177 broke_test2

Last Write TimeStamp reported by dir command

03/06/2007 05:24 PM 3,497,177 broke_test2

Python 2.5.1 timestamp info

File Name : broke_test2

Creation Time: 05/31/2007 16:26:36 -- Python results are correct
Last Access Time: 05/31/2007 16:26:38 -- Python results are correct
Last Write Time: 03/06/2007 16:24:21 -- Python results are WRONG hours
reported are 1 hour short
 
J

Joe Salmeri

Hi Tony,

I still believe there is a problem.

I was searching for os.stat problems so I hadn't seen that one yet. (THANKS)

I just read that thread but it seems that the conclusion was that this was a
bug in a Microsoft c runtime library.

Here's why I think there is still a problem:

I created a file and specifically set the created date, last accessed date
and last write date to

01/02/2003 12:34:56

After setting the date and time on the file I verified the following:

The dir /tc command shows the correct Create date of 01/02/2003 12:34
The dir /ta command shows the correct Access date of 01/02/2003 12:34
The dir /tw command shows the correct Write date of 01/02/2003 12:34

Looking at the properties of the file in Windows Explorer also shows that
all 3 dates match.

When Python 2.4.2 os.stat is used to get those timestamps all 3 are CORRECT

When Python 2.5.1 os.stat is used to get those timestamps all 3 are WRONG
and they are off by exact 1 hour

01/02/2003 11:34:56 instead of 01/02/2003 12:34:56

In the case of my above test I know exactly what the timestamp on the file
is because I manually set it so that all 3 timestamps are the same.
Since Python 2.5.1 does not return the known values for that files
timestamps how can it not be a Python 2.5.1 bug?

Further testing shows that the results are somewhat inconsistent, many times
the create and access date are correct but the Last Write timestamp is
wrong. It is generally off by one hour but I have seen situations where it
was +1 hour and other situations where it was -1 hour.

I even found situations where the python timestamp was 1 minute later. (I
know about the 2 second timestamps on FAT, all my filesystems are NTFS). I
just found a situation where the python timestamp was 02:51 PM and the
windows timestamp was 02:12 PM. DST or timezone changes are not going to
make the results be off by 39 minutes? (My timezone is GMT - 5:00).

As an additional test I wrote the following Python program which takes a
directory name as a paramater.
It retrieves all 3 dates for all files in all directories and subdirectories
for the specified directory name.
First it gets the dates using Python and os.stat, then it runs the dir /tc,
dir /ta, and dir /tw commands on the file.
Finally it compares the dates and times returned by Python against the dates
and times that the Windows dir command is reporting.

If you run the program using Python 2.4.2 then ALL dates and times returned
by Python 2.4.2 correctly match the dates and times that Windows reports.

If you run the program using Python 2.5.1 against the same directory then
you get intermittient results.

As a quick test I ran it against a directory on my home directory.

Python 2.4.2 all dates matched between what the Windows dir command reported
and what Python 2.4.2 reported.

Python 2.5.1 had the following differences (more than 50% of the time it was
wrong)

Total Files Processed : 149

Matched All 3 Dates : 70
Did NOT Match All 3 Dates: 79

Matched Create Date : 69
Did NOT Match Create Date: 10

Matched Access Date : 59
Did NOT Match Access Date: 20

Matched Write Date : 11
Did NOT Match Write Date : 68

Here's the source for the check_dates.py program. Run it for youself and
see what your results are.

import os
import stat
import sys
import time

if len(sys.argv) == 1:
print
print '%s path_to_check' % (sys.argv[0])
print
raise SystemExit
else:
path_to_check = sys.argv[1]

file_count = 0

file_match_count = 0
file_no_match_count = 0

create_match_count = 0
create_no_match_count = 0

access_match_count = 0
access_no_match_count = 0

write_match_count = 0
write_no_match_count = 0

for root, dirs, files in os.walk(r'%s' % path_to_check):
for file in files:
file_count = file_count + 1
file_name = os.path.join(root, file)

create_ts_match = False
access_ts_match = False
write_ts_match = False

file_stats = os.stat(file_name)

python_create_ts = time.strftime('%m/%d/%Y %I:%M %p',
time.localtime(file_stats[stat.ST_CTIME]))
python_access_ts = time.strftime('%m/%d/%Y %I:%M %p',
time.localtime(file_stats[stat.ST_ATIME]))
python_write_ts = time.strftime('%m/%d/%Y %I:%M %p',
time.localtime(file_stats[stat.ST_MTIME]))

win_create_ts = os.popen('dir /a /tc "%s"' %
(file_name)).readlines()[5][0:20]
win_access_ts = os.popen('dir /a /ta "%s"' %
(file_name)).readlines()[5][0:20]
win_write_ts = os.popen('dir /a /tw "%s"' %
(file_name)).readlines()[5][0:20]

if python_create_ts == win_create_ts: create_ts_match = True
if python_access_ts == win_access_ts: access_ts_match = True
if python_write_ts == win_write_ts: write_ts_match = True

if create_ts_match and access_ts_match and write_ts_match:
# All timestamps match
file_match_count = file_match_count + 1
else:
file_no_match_count = file_no_match_count + 1
print
print 'File Name : %s' % (file_name)
print

if create_ts_match:
create_match_count = create_match_count + 1
else:
create_no_match_count = create_no_match_count + 1

print 'python_create_ts: %s' % (python_create_ts)
print 'win_create_ts : %s' % (win_create_ts)
print

if access_ts_match:
access_match_count = access_match_count + 1
else:
access_no_match_count = access_no_match_count + 1

print 'python_access_ts: %s' % (python_access_ts)
print 'win_access_ts : %s' % (win_access_ts)
print

if write_ts_match:
write_match_count = write_match_count + 1
else:
write_no_match_count = write_no_match_count + 1

print 'python_write_ts : %s' % (python_write_ts)
print 'win_write_ts : %s' % (win_write_ts)
print

#
# Show Count Results
#

print 'Total Files Processed : %s' % (file_count)
print
print 'Matched All 3 Dates : %s' % (file_match_count)
print 'Did NOT Match All 3 Dates: %s' % (file_no_match_count)
print
print 'Matched Create Date : %s' % (create_match_count)
print 'Did NOT Match Create Date: %s' % (create_no_match_count)
print
print 'Matched Access Date : %s' % (access_match_count)
print 'Did NOT Match Access Date: %s' % (access_no_match_count)
print
print 'Matched Write Date : %s' % (write_match_count)
print 'Did NOT Match Write Date : %s' % (write_no_match_count)
print
 
J

Joe Salmeri

I ran the check_dates.py included in the other msg against the python\lib
directory

All Python 2.4.2 timestamps match what Windows reports
The Python 2.5.1 timestamps vary
Sometimes python is +1 minute
Sometimes python is -1 hour
Sometimes python is +59 minutes
Sometimes python is +42 minutes
Sometimes python is +37 minutes
Sometimes python +2 minutes
Sometimes python +30 minutes
Sometimes python +3 minutes
Sometimes python +33 minutes

I only went through about 1/3 of the results.

Using Python 2.4.2
=====================
Total Files Processed : 4626

Matched All 3 Dates : 4626
Did NOT Match All 3 Dates: 0

Matched Create Date : 0
Did NOT Match Create Date: 0

Matched Access Date : 0
Did NOT Match Access Date: 0

Matched Write Date : 0
Did NOT Match Write Date : 0

Using Python 2.5.1
=====================


File Name : P:\sw\Python\Lib\aifc.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\anydbm.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\asynchat.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\asyncore.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\atexit.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\audiodev.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\base64.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\BaseHTTPServer.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\Bastion.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bdb.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\binhex.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bisect.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\calendar.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\calendar.pyc

python_access_ts: 05/31/2007 07:34 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\cgi.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\cgi.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\CGIHTTPServer.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\cgitb.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\chunk.py

python_create_ts: 02/20/2006 09:47 AM
win_create_ts : 02/20/2006 10:47 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/20/2006 09:47 AM
win_write_ts : 02/20/2006 10:47 AM


File Name : P:\sw\Python\Lib\cmd.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\code.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\code.pyc

python_access_ts: 05/30/2007 07:59 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\codecs.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\codecs.pyc

python_access_ts: 05/31/2007 08:01 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\codecs.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:24 PM


File Name : P:\sw\Python\Lib\codeop.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\codeop.pyc

python_access_ts: 05/30/2007 07:59 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\colorsys.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\commands.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\compileall.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ConfigParser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\contextlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\Cookie.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\cookielib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\copy.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\copy.pyc

python_access_ts: 05/31/2007 07:34 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\copy_reg.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\copy_reg.pyc

python_access_ts: 05/31/2007 08:01 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\copy_reg.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\cProfile.py

python_create_ts: 02/14/2006 10:19 PM
win_create_ts : 02/14/2006 11:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/14/2006 10:19 PM
win_write_ts : 02/14/2006 11:19 PM


File Name : P:\sw\Python\Lib\csv.py

python_create_ts: 01/18/2006 11:43 AM
win_create_ts : 01/18/2006 12:43 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/18/2006 11:43 AM
win_write_ts : 01/18/2006 12:43 PM


File Name : P:\sw\Python\Lib\dbhash.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\decimal.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\decimal.pyc

python_access_ts: 05/31/2007 07:34 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\difflib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\dircache.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\dis.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\doctest.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\DocXMLRPCServer.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\dumbdbm.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\dummy_thread.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\dummy_threading.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\filecmp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\fileinput.py

python_create_ts: 02/20/2006 09:47 AM
win_create_ts : 02/20/2006 10:47 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/20/2006 09:47 AM
win_write_ts : 02/20/2006 10:47 AM


File Name : P:\sw\Python\Lib\fnmatch.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\fnmatch.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\formatter.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\fpformat.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ftplib.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\functools.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\getopt.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\getpass.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\getpass.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\gettext.py

python_create_ts: 02/20/2006 09:47 AM
win_create_ts : 02/20/2006 10:47 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/20/2006 09:47 AM
win_write_ts : 02/20/2006 10:47 AM


File Name : P:\sw\Python\Lib\glob.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\glob.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\gopherlib.py

python_create_ts: 02/18/2006 01:41 PM
win_create_ts : 02/18/2006 02:41 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/18/2006 01:41 PM
win_write_ts : 02/18/2006 02:41 PM


File Name : P:\sw\Python\Lib\gzip.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\hashlib.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\heapq.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\hmac.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\htmlentitydefs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\htmllib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\HTMLParser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\httplib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ihooks.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ihooks.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\imaplib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\imghdr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\imputil.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\inspect.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\keyword.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\linecache.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\linecache.pyc

python_access_ts: 05/31/2007 08:04 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\linecache.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\locale.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\locale.pyc

python_access_ts: 05/31/2007 08:04 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\locale.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\macpath.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\macurl2path.py

python_create_ts: 01/18/2006 11:43 AM
win_create_ts : 01/18/2006 12:43 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/18/2006 11:43 AM
win_write_ts : 01/18/2006 12:43 PM


File Name : P:\sw\Python\Lib\mailbox.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\mailcap.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\markupbase.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\md5.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\mhlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\mimetools.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\mimetools.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\mimetypes.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\MimeWriter.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\mimify.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\modulefinder.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\multifile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\mutex.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\netrc.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\new.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\new.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\nntplib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ntpath.py

python_access_ts: 05/31/2007 06:04 PM
win_access_ts : 05/31/2007 05:52 PM


File Name : P:\sw\Python\Lib\ntpath.pyc

python_access_ts: 05/31/2007 08:04 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\ntpath.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\nturl2path.py

python_create_ts: 01/18/2006 11:43 AM
win_create_ts : 01/18/2006 12:43 PM

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM

python_write_ts : 01/18/2006 11:43 AM
win_write_ts : 01/18/2006 12:43 PM


File Name : P:\sw\Python\Lib\nturl2path.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\opcode.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\optparse.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\os.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/31/2007 06:04 PM
win_access_ts : 05/31/2007 05:52 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\os.pyc

python_access_ts: 05/31/2007 08:04 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\os.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:24 PM


File Name : P:\sw\Python\Lib\os2emxpath.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\pdb.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\pickle.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\pickletools.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\pipes.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\pkgutil.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\platform.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\popen2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\poplib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\posixfile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\posixpath.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\posixpath.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\pprint.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\profile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\pstats.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\pty.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\pyclbr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\pydoc.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\py_compile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\py_compile.pyc

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\py_compile.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\Queue.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\quopri.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\random.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\random.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\re.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\re.pyc

python_access_ts: 05/31/2007 08:04 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\re.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\repr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\rexec.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\rexec.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\rfc822.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\rfc822.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\rlcompleter.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\robotparser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\runpy.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sched.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sets.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sgmllib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sha.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\shelve.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\shlex.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\shutil.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\shutil.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\SimpleHTTPServer.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\SimpleXMLRPCServer.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\site.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\site.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\site.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\smtpd.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\smtplib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sndhdr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\socket.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\socket.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\SocketServer.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sre.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sre_compile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sre_compile.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\sre_compile.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\sre_constants.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sre_constants.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\sre_constants.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\sre_parse.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sre_parse.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\sre_parse.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\stat.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\stat.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\string.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\string.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\StringIO.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\stringold.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\stringprep.py

python_create_ts: 03/10/2006 12:10 PM
win_create_ts : 03/10/2006 01:10 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 12:10 PM
win_write_ts : 03/10/2006 01:10 PM


File Name : P:\sw\Python\Lib\struct.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\subprocess.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sunau.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sunaudio.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\symbol.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\symtable.py

python_create_ts: 11/28/2005 06:26 PM
win_create_ts : 11/28/2005 07:26 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/28/2005 06:26 PM
win_write_ts : 11/28/2005 07:26 PM


File Name : P:\sw\Python\Lib\tabnanny.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\tarfile.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\telnetlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\tempfile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\tempfile.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\textwrap.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\this.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\threading.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\timeit.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\toaiff.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\token.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\tokenize.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\trace.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\traceback.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\traceback.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\tty.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\types.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\types.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\types.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\unittest.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\urllib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\urllib.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\urllib2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\urlparse.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\urlparse.pyc

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\user.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\UserDict.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\UserDict.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\UserDict.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:24 PM


File Name : P:\sw\Python\Lib\UserList.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\UserString.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\uu.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\uuid.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\warnings.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\warnings.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\warnings.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\wave.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\weakref.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\webbrowser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\whichdb.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xdrlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xmllib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xmlrpclib.py

python_create_ts: 12/08/2005 01:20 PM
win_create_ts : 12/08/2005 02:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/08/2005 01:20 PM
win_write_ts : 12/08/2005 02:20 PM


File Name : P:\sw\Python\Lib\zipfile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\_LWPCookieJar.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\_MozillaCookieJar.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\_strptime.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\_threading_local.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\__future__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\__phello__.foo.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\db.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\dbobj.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\bsddb\dbrecio.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\dbshelve.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\dbtables.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\dbutils.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_1413192.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\bsddb\test\test_all.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_associate.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_basics.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_compare.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_compat.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_cursor_pget_bug.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_dbobj.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_dbshelve.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_dbtables.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_env_close.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_get_none.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_join.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_lock.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_misc.py

python_create_ts: 02/20/2006 09:47 AM
win_create_ts : 02/20/2006 10:47 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/20/2006 09:47 AM
win_write_ts : 02/20/2006 10:47 AM


File Name : P:\sw\Python\Lib\bsddb\test\test_pickle.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_queue.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_recno.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_sequence.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\bsddb\test\test_thread.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\compiler\ast.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\compiler\consts.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\compiler\future.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\compiler\misc.py

python_create_ts: 11/28/2005 06:26 PM
win_create_ts : 11/28/2005 07:26 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/28/2005 06:26 PM
win_write_ts : 11/28/2005 07:26 PM


File Name : P:\sw\Python\Lib\compiler\pyassem.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\compiler\pycodegen.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\compiler\symbols.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\compiler\syntax.py

python_create_ts: 11/28/2005 06:26 PM
win_create_ts : 11/28/2005 07:26 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/28/2005 06:26 PM
win_write_ts : 11/28/2005 07:26 PM


File Name : P:\sw\Python\Lib\compiler\transformer.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\compiler\visitor.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\compiler\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\util.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\ctypes\wintypes.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\_endian.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\macholib\dyld.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\macholib\dylib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\macholib\framework.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\macholib\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\runtests.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_anon.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_arrays.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_array_in_pointer.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_as_parameter.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_bitfields.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_buffers.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_byteswap.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_callbacks.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_cast.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_cfuncs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_checkretval.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_errcheck.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_find.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_funcptr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_functions.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_incomplete.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_init.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_integers.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_internals.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_keeprefs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_libc.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_loading.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_macholib.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_memfunctions.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_numbers.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_objects.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_parameters.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_pointers.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_prototypes.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_python_api.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_random_things.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_refcounts.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_repr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_returnfuncptrs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_simplesubclasses.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_sizes.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_slicing.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_stringptr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_strings.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_structures.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_struct_fields.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_unaligned_structures.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_unicode.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_values.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_varsize_struct.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\test_win32.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\ctypes\test\__init__.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\curses\ascii.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\curses\has_key.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\curses\panel.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\curses\textpad.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\curses\wrapper.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\curses\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\archive_util.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\bcppcompiler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\ccompiler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\cmd.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\core.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\cygwinccompiler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\debug.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\dep_util.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\dir_util.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\dist.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\emxccompiler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\errors.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\errors.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\distutils\extension.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\fancy_getopt.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\filelist.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\file_util.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\log.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\msvccompiler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\mwerkscompiler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\spawn.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\sysconfig.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\sysconfig.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\distutils\text_file.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\unixccompiler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\util.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\version.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\versionpredicate.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\__init__.pyc

python_access_ts: 05/30/2007 07:24 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\bdist.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\bdist_dumb.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\bdist_msi.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\bdist_rpm.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\distutils\command\bdist_wininst.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\build.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\build_clib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\build_ext.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\build_py.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\build_scripts.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\clean.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\config.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\install.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\install_data.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\install_egg_info.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\distutils\command\install_headers.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\install_lib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\install_scripts.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\register.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\sdist.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\upload.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\command\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\tests\support.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\tests\test_build_py.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\tests\test_build_scripts.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\tests\test_dist.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\tests\test_install.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\tests\test_install_scripts.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\tests\test_versionpredicate.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\distutils\tests\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\base64mime.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\charset.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\encoders.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\errors.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\feedparser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\generator.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\header.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\iterators.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\message.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\parser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\quoprimime.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\utils.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\_parseaddr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\mime\application.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\mime\audio.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\mime\base.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\mime\image.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\mime\message.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\mime\multipart.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\mime\nonmultipart.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\mime\text.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\test\test_email.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\test\test_email_codecs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\test\test_email_codecs_renamed.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\test\test_email_renamed.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\email\test\test_email_torture.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\aliases.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\aliases.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\encodings\aliases.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\encodings\ascii.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\base64_codec.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\big5.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\big5hkscs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\bz2_codec.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\encodings\charmap.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp037.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1006.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1026.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1140.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1250.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1251.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1252.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1252.pyc

python_access_ts: 05/31/2007 08:07 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\encodings\cp1252.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\encodings\cp1253.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1254.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1255.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1256.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1257.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp1258.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp424.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp437.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp437.pyc

python_access_ts: 05/31/2007 05:53 PM
win_access_ts : 05/31/2007 05:46 PM


File Name : P:\sw\Python\Lib\encodings\cp500.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp737.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp775.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp850.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp852.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp855.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp856.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp857.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp860.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp861.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp862.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp863.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp864.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp865.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp866.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp869.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp874.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp875.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp932.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp949.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\cp950.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\euc_jisx0213.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\euc_jis_2004.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\euc_jp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\euc_kr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\gb18030.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\gb2312.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\gbk.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\hex_codec.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\hp_roman8.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\hz.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\idna.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso2022_jp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso2022_jp_1.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso2022_jp_2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso2022_jp_2004.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso2022_jp_3.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso2022_jp_ext.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso2022_kr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_1.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_10.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_11.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_13.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_14.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_15.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_16.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_3.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_4.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_5.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_6.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_7.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_8.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\iso8859_9.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\johab.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\koi8_r.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\koi8_u.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\latin_1.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_arabic.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_centeuro.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_croatian.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_cyrillic.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_farsi.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_greek.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_iceland.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_latin2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_roman.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_romanian.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mac_turkish.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\mbcs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\palmos.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\ptcp154.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\punycode.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\quopri_codec.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\raw_unicode_escape.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\rot_13.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\shift_jis.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\shift_jisx0213.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\shift_jis_2004.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\string_escape.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\tis_620.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\undefined.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\unicode_escape.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\unicode_internal.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\utf_16.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\utf_16_be.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\utf_16_le.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\utf_7.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\utf_8.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\utf_8_sig.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\encodings\uu_codec.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\zlib_codec.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\encodings\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\encodings\__init__.pyc

python_access_ts: 05/31/2007 08:24 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\encodings\__init__.pyo

python_access_ts: 05/30/2007 07:25 PM
win_access_ts : 05/30/2007 07:23 PM


File Name : P:\sw\Python\Lib\hotshot\log.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\hotshot\stones.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\hotshot\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\aboutDialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\AutoComplete.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\idlelib\AutoCompleteWindow.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\idlelib\AutoExpand.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\Bindings.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\CallTips.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\CallTipWindow.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\ClassBrowser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\CodeContext.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\ColorDelegator.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\config-extensions.def

python_create_ts: 11/28/2005 06:26 PM
win_create_ts : 11/28/2005 07:26 PM

python_write_ts : 11/28/2005 06:26 PM
win_write_ts : 11/28/2005 07:26 PM


File Name : P:\sw\Python\Lib\idlelib\configDialog.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\idlelib\configHandler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\configHelpSourceEdit.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\configSectionNameDialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\Debugger.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\Delegator.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\dynOptionMenuWidget.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\EditorWindow.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\idlelib\FileList.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\FormatParagraph.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\GrepDialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\HyperParser.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\idlelib\idle.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\IdleHistory.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\idlever.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\IOBinding.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\keybindingDialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\macosxSupport.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\MultiCall.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\MultiStatusBar.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\ObjectBrowser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\OutputWindow.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\ParenMatch.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\PathBrowser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\Percolator.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\PyParse.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\idlelib\PyShell.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\RemoteDebugger.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\RemoteObjectBrowser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\ReplaceDialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\rpc.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\run.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\idlelib\ScriptBinding.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\ScrolledList.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\SearchDialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\SearchDialogBase.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\SearchEngine.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\StackViewer.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\tabpage.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\testcode.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\textView.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\ToolTip.py

python_create_ts: 11/28/2005 06:26 PM
win_create_ts : 11/28/2005 07:26 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/28/2005 06:26 PM
win_write_ts : 11/28/2005 07:26 PM


File Name : P:\sw\Python\Lib\idlelib\TreeWidget.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\UndoDelegator.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\WidgetRedirector.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\WindowList.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\ZoomHeight.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\idlelib\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\Canvas.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\Dialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\FileDialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\FixTk.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\ScrolledText.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\SimpleDialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\Tix.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\lib-tk\tkColorChooser.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\lib-tk\tkCommonDialog.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\lib-tk\Tkconstants.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\Tkdnd.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\tkFileDialog.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\tkFont.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\Tkinter.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\tkMessageBox.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\lib-tk\tkSimpleDialog.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\lib-tk\turtle.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\logging\config.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\logging\handlers.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\logging\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\msilib\schema.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\msilib\sequence.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\msilib\text.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\msilib\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\site-packages\py2exe-0.6.6-py2.5.egg-info

python_create_ts: 12/28/2006 11:01 PM
win_create_ts : 12/29/2006 12:01 AM

python_access_ts: 12/28/2006 11:01 PM
win_access_ts : 12/29/2006 12:01 AM

python_write_ts : 12/28/2006 11:01 PM
win_write_ts : 12/29/2006 12:01 AM


File Name :
P:\sw\Python\Lib\site-packages\pygame-1.7.1release-py2.5.egg-info

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pyodbc.pyd

python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM


File Name : P:\sw\Python\Lib\site-packages\pythoncom.py

python_create_ts: 01/26/2004 05:01 PM
win_create_ts : 01/26/2004 06:01 PM

python_write_ts : 01/26/2004 05:01 PM
win_write_ts : 01/26/2004 06:01 PM


File Name : P:\sw\Python\Lib\site-packages\pywin32.pth

python_access_ts: 05/31/2007 08:24 PM
win_access_ts : 05/31/2007 07:31 PM


File Name : P:\sw\Python\Lib\site-packages\_memimporter.pyd

python_create_ts: 12/28/2006 11:01 PM
win_create_ts : 12/29/2006 12:01 AM

python_access_ts: 12/28/2006 11:01 PM
win_access_ts : 12/29/2006 12:01 AM

python_write_ts : 12/28/2006 11:01 PM
win_write_ts : 12/29/2006 12:01 AM


File Name : P:\sw\Python\Lib\site-packages\isapi\simple.py

python_create_ts: 02/01/2006 11:37 AM
win_create_ts : 02/01/2006 12:37 PM

python_write_ts : 02/01/2006 11:37 AM
win_write_ts : 02/01/2006 12:37 PM


File Name : P:\sw\Python\Lib\site-packages\py2exe\boot_common.py

python_create_ts: 12/27/2006 05:22 AM
win_create_ts : 12/27/2006 06:22 AM

python_write_ts : 12/27/2006 05:22 AM
win_write_ts : 12/27/2006 06:22 AM


File Name : P:\sw\Python\Lib\site-packages\py2exe\build_exe.py

python_create_ts: 11/21/2006 07:43 PM
win_create_ts : 11/21/2006 08:43 PM

python_write_ts : 11/21/2006 07:43 PM
win_write_ts : 11/21/2006 08:43 PM


File Name : P:\sw\Python\Lib\site-packages\py2exe\py2exe_util.pyd

python_create_ts: 12/28/2006 11:01 PM
win_create_ts : 12/29/2006 12:01 AM

python_access_ts: 12/28/2006 11:01 PM
win_access_ts : 12/29/2006 12:01 AM

python_write_ts : 12/28/2006 11:01 PM
win_write_ts : 12/29/2006 12:01 AM


File Name : P:\sw\Python\Lib\site-packages\py2exe\run.exe

python_create_ts: 12/28/2006 11:01 PM
win_create_ts : 12/29/2006 12:01 AM

python_access_ts: 12/28/2006 11:01 PM
win_access_ts : 12/29/2006 12:01 AM

python_write_ts : 12/28/2006 11:01 PM
win_write_ts : 12/29/2006 12:01 AM


File Name : P:\sw\Python\Lib\site-packages\py2exe\run_ctypes_dll.dll

python_create_ts: 12/28/2006 11:01 PM
win_create_ts : 12/29/2006 12:01 AM

python_access_ts: 12/28/2006 11:01 PM
win_access_ts : 12/29/2006 12:01 AM

python_write_ts : 12/28/2006 11:01 PM
win_write_ts : 12/29/2006 12:01 AM


File Name : P:\sw\Python\Lib\site-packages\py2exe\run_dll.dll

python_create_ts: 12/28/2006 11:01 PM
win_create_ts : 12/29/2006 12:01 AM

python_access_ts: 12/28/2006 11:01 PM
win_access_ts : 12/29/2006 12:01 AM

python_write_ts : 12/28/2006 11:01 PM
win_write_ts : 12/29/2006 12:01 AM


File Name : P:\sw\Python\Lib\site-packages\py2exe\run_isapi.dll

python_create_ts: 12/28/2006 11:01 PM
win_create_ts : 12/29/2006 12:01 AM

python_access_ts: 12/28/2006 11:01 PM
win_access_ts : 12/29/2006 12:01 AM

python_write_ts : 12/28/2006 11:01 PM
win_write_ts : 12/29/2006 12:01 AM


File Name : P:\sw\Python\Lib\site-packages\py2exe\run_w.exe

python_create_ts: 12/28/2006 11:01 PM
win_create_ts : 12/29/2006 12:01 AM

python_access_ts: 12/28/2006 11:01 PM
win_access_ts : 12/29/2006 12:01 AM

python_write_ts : 12/28/2006 11:01 PM
win_write_ts : 12/29/2006 12:01 AM


File Name : P:\sw\Python\Lib\site-packages\py2exe\__init__.py

python_create_ts: 12/27/2006 05:23 AM
win_create_ts : 12/27/2006 06:23 AM

python_write_ts : 12/27/2006 05:23 AM
win_write_ts : 12/27/2006 06:23 AM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\resources\StringTables.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\resources\VersionInfo.py

python_create_ts: 03/12/2004 03:58 AM
win_create_ts : 03/12/2004 04:58 AM

python_write_ts : 03/12/2004 03:58 AM
win_write_ts : 03/12/2004 04:58 AM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\resources\__init__.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\advanced\icon.ico

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_access_ts: 01/15/2004 09:45 PM
win_access_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\advanced\MyService.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\advanced\test_wmi.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\advanced\test_wx.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\extending\setup.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\extending\test_wx.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\simple\hello.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\simple\setup.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\simple\test_wx.py

python_create_ts: 01/15/2004 09:45 PM
win_create_ts : 01/15/2004 10:45 PM

python_write_ts : 01/15/2004 09:45 PM
win_write_ts : 01/15/2004 10:45 PM


File Name :
P:\sw\Python\Lib\site-packages\py2exe\samples\singlefile\comserver\setup_client.py

python_create_ts: 12/16/2005 06:01 AM
win_create_ts : 12/16/2005 07:01 AM

python_write_ts : 12/16/2005 06:01 AM
win_write_ts : 12/16/2005 07:01 AM


File Name : P:\sw\Python\Lib\site-packages\pygame\base.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\cdrom.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\constants.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\display.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\draw.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\event.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\fastevent.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\font.pyd

python_create_ts: 01/25/2007 01:40 PM
win_create_ts : 01/25/2007 02:40 PM

python_access_ts: 01/25/2007 01:40 PM
win_access_ts : 01/25/2007 02:40 PM

python_write_ts : 01/25/2007 01:40 PM
win_write_ts : 01/25/2007 02:40 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\image.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\imageext.pyd

python_create_ts: 01/25/2007 01:40 PM
win_create_ts : 01/25/2007 02:40 PM

python_access_ts: 01/25/2007 01:40 PM
win_access_ts : 01/25/2007 02:40 PM

python_write_ts : 01/25/2007 01:40 PM
win_write_ts : 01/25/2007 02:40 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\joystick.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\key.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\mixer.pyd

python_create_ts: 01/25/2007 01:40 PM
win_create_ts : 01/25/2007 02:40 PM

python_access_ts: 01/25/2007 01:40 PM
win_access_ts : 01/25/2007 02:40 PM

python_write_ts : 01/25/2007 01:40 PM
win_write_ts : 01/25/2007 02:40 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\mixer_music.pyd

python_create_ts: 01/25/2007 01:40 PM
win_create_ts : 01/25/2007 02:40 PM

python_access_ts: 01/25/2007 01:40 PM
win_access_ts : 01/25/2007 02:40 PM

python_write_ts : 01/25/2007 01:40 PM
win_write_ts : 01/25/2007 02:40 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\mouse.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\movie.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\overlay.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\pygame.ico

python_create_ts: 01/18/2002 06:50 AM
win_create_ts : 01/18/2002 07:50 AM

python_access_ts: 01/18/2002 06:50 AM
win_access_ts : 01/18/2002 07:50 AM

python_write_ts : 01/18/2002 06:50 AM
win_write_ts : 01/18/2002 07:50 AM


File Name : P:\sw\Python\Lib\site-packages\pygame\pygame_icon.bmp

python_create_ts: 01/18/2002 06:50 AM
win_create_ts : 01/18/2002 07:50 AM

python_access_ts: 01/18/2002 06:50 AM
win_access_ts : 01/18/2002 07:50 AM

python_write_ts : 01/18/2002 06:50 AM
win_write_ts : 01/18/2002 07:50 AM


File Name : P:\sw\Python\Lib\site-packages\pygame\pygame_icon.icns

python_create_ts: 01/07/2002 02:24 AM
win_create_ts : 01/07/2002 03:24 AM

python_access_ts: 01/07/2002 02:24 AM
win_access_ts : 01/07/2002 03:24 AM

python_write_ts : 01/07/2002 02:24 AM
win_write_ts : 01/07/2002 03:24 AM


File Name : P:\sw\Python\Lib\site-packages\pygame\pygame_icon.tiff

python_create_ts: 01/07/2002 02:24 AM
win_create_ts : 01/07/2002 03:24 AM

python_access_ts: 01/07/2002 02:24 AM
win_access_ts : 01/07/2002 03:24 AM

python_write_ts : 01/07/2002 02:24 AM
win_write_ts : 01/07/2002 03:24 AM


File Name : P:\sw\Python\Lib\site-packages\pygame\rect.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\rwobject.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\smpeg.dll

python_create_ts: 11/10/2001 09:38 PM
win_create_ts : 11/10/2001 10:38 PM

python_access_ts: 11/10/2001 09:38 PM
win_access_ts : 11/10/2001 10:38 PM

python_write_ts : 11/10/2001 09:38 PM
win_write_ts : 11/10/2001 10:38 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\sndarray.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\surface.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\surfarray.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\surflock.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\time.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pygame\transform.pyd

python_create_ts: 01/25/2007 01:45 PM
win_create_ts : 01/25/2007 02:45 PM

python_access_ts: 01/25/2007 01:45 PM
win_access_ts : 01/25/2007 02:45 PM

python_write_ts : 01/25/2007 01:45 PM
win_write_ts : 01/25/2007 02:45 PM


File Name : P:\sw\Python\Lib\site-packages\pythonwin\license.txt

python_create_ts: 02/21/2001 04:44 AM
win_create_ts : 02/21/2001 05:44 AM

python_access_ts: 02/21/2001 04:44 AM
win_access_ts : 02/21/2001 05:44 AM

python_write_ts : 02/21/2001 04:44 AM
win_write_ts : 02/21/2001 05:44 AM


File Name : P:\sw\Python\Lib\site-packages\pythonwin\Pythonwin.exe

python_access_ts: 05/30/2007 07:59 PM
win_access_ts : 05/30/2007 07:51 PM


File Name : P:\sw\Python\Lib\site-packages\pythonwin\pywin\__init__.py

python_create_ts: 01/26/2004 10:18 AM
win_create_ts : 01/26/2004 11:18 AM

python_write_ts : 01/26/2004 10:18 AM
win_write_ts : 01/26/2004 11:18 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\debugger\debugger.py

python_create_ts: 03/05/2005 09:02 AM
win_create_ts : 03/05/2005 10:02 AM

python_write_ts : 03/05/2005 09:02 AM
win_write_ts : 03/05/2005 10:02 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\debugger\__init__.py

python_create_ts: 02/17/2003 06:53 PM
win_create_ts : 02/17/2003 07:53 PM

python_write_ts : 02/17/2003 06:53 PM
win_write_ts : 02/17/2003 07:53 PM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\Demos\guidemo.py

python_create_ts: 03/11/2000 07:56 AM
win_create_ts : 03/11/2000 08:56 AM

python_write_ts : 03/11/2000 07:56 AM
win_write_ts : 03/11/2000 08:56 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\Demos\openGLDemo.py

python_create_ts: 03/11/2000 07:56 AM
win_create_ts : 03/11/2000 08:56 AM

python_write_ts : 03/11/2000 07:56 AM
win_write_ts : 03/11/2000 08:56 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\Demos\splittst.py

python_create_ts: 03/11/2000 07:57 AM
win_create_ts : 03/11/2000 08:57 AM

python_write_ts : 03/11/2000 07:57 AM
win_write_ts : 03/11/2000 08:57 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\Demos\toolbar.py

python_create_ts: 03/05/2005 06:33 AM
win_create_ts : 03/05/2005 07:33 AM

python_write_ts : 03/05/2005 06:33 AM
win_write_ts : 03/05/2005 07:33 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\dialogs\ideoptions.py

python_create_ts: 03/11/2000 07:57 AM
win_create_ts : 03/11/2000 08:57 AM

python_write_ts : 03/11/2000 07:57 AM
win_write_ts : 03/11/2000 08:57 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\framework\help.py

python_create_ts: 11/16/2005 03:12 AM
win_create_ts : 11/16/2005 04:12 AM

python_write_ts : 11/16/2005 03:12 AM
win_write_ts : 11/16/2005 04:12 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\framework\interact.py

python_create_ts: 03/05/2005 09:14 AM
win_create_ts : 03/05/2005 10:14 AM

python_write_ts : 03/05/2005 09:14 AM
win_write_ts : 03/05/2005 10:14 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\framework\intpyapp.py

python_create_ts: 03/05/2005 09:17 AM
win_create_ts : 03/05/2005 10:17 AM

python_write_ts : 03/05/2005 09:17 AM
win_write_ts : 03/05/2005 10:17 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\framework\toolmenu.py

python_create_ts: 02/07/2004 07:34 AM
win_create_ts : 02/07/2004 08:34 AM

python_write_ts : 02/07/2004 07:34 AM
win_write_ts : 02/07/2004 08:34 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\framework\editor\editor.py

python_create_ts: 02/07/2004 07:33 AM
win_create_ts : 02/07/2004 08:33 AM

python_write_ts : 02/07/2004 07:33 AM
win_write_ts : 02/07/2004 08:33 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\framework\editor\ModuleBrowser.py

python_create_ts: 01/26/2004 10:18 AM
win_create_ts : 01/26/2004 11:18 AM

python_write_ts : 01/26/2004 10:18 AM
win_write_ts : 01/26/2004 11:18 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\framework\editor\template.py

python_create_ts: 03/11/2000 07:52 AM
win_create_ts : 03/11/2000 08:52 AM

python_write_ts : 03/11/2000 07:52 AM
win_write_ts : 03/11/2000 08:52 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\framework\editor\__init__.py

python_create_ts: 03/11/2000 07:52 AM
win_create_ts : 03/11/2000 08:52 AM

python_write_ts : 03/11/2000 07:52 AM
win_write_ts : 03/11/2000 08:52 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\framework\editor\color\coloreditor.py

python_create_ts: 01/26/2004 10:18 AM
win_create_ts : 01/26/2004 11:18 AM

python_write_ts : 01/26/2004 10:18 AM
win_write_ts : 01/26/2004 11:18 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\idle\AutoIndent.py

python_create_ts: 02/27/2006 05:05 PM
win_create_ts : 02/27/2006 06:05 PM

python_write_ts : 02/27/2006 05:05 PM
win_write_ts : 02/27/2006 06:05 PM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\mfc\afxres.py

python_create_ts: 01/10/2006 10:28 AM
win_create_ts : 01/10/2006 11:28 AM

python_write_ts : 01/10/2006 10:28 AM
win_write_ts : 01/10/2006 11:28 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\mfc\dialog.py

python_create_ts: 11/27/1999 02:57 PM
win_create_ts : 11/27/1999 03:57 PM

python_write_ts : 11/27/1999 02:57 PM
win_write_ts : 11/27/1999 03:57 PM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\mfc\object.py

python_create_ts: 01/10/2006 10:36 AM
win_create_ts : 01/10/2006 11:36 AM

python_write_ts : 01/10/2006 10:36 AM
win_write_ts : 01/10/2006 11:36 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\mfc\window.py

python_create_ts: 01/05/2000 11:10 AM
win_create_ts : 01/05/2000 12:10 PM

python_write_ts : 01/05/2000 11:10 AM
win_write_ts : 01/05/2000 12:10 PM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\scintilla\config.py

python_create_ts: 11/29/2003 12:46 PM
win_create_ts : 11/29/2003 01:46 PM

python_write_ts : 11/29/2003 12:46 PM
win_write_ts : 11/29/2003 01:46 PM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\scintilla\configui.py

python_create_ts: 11/25/2003 04:46 PM
win_create_ts : 11/25/2003 05:46 PM

python_write_ts : 11/25/2003 04:46 PM
win_write_ts : 11/25/2003 05:46 PM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\scintilla\IDLEenvironment.py

python_create_ts: 01/26/2004 10:18 AM
win_create_ts : 01/26/2004 11:18 AM

python_write_ts : 01/26/2004 10:18 AM
win_write_ts : 01/26/2004 11:18 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\scintilla\scintillacon.py

python_create_ts: 01/26/2004 10:18 AM
win_create_ts : 01/26/2004 11:18 AM

python_write_ts : 01/26/2004 10:18 AM
win_write_ts : 01/26/2004 11:18 AM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\scintilla\view.py

python_create_ts: 01/10/2006 11:00 AM
win_create_ts : 01/10/2006 12:00 PM

python_write_ts : 01/10/2006 11:00 AM
win_write_ts : 01/10/2006 12:00 PM


File Name :
P:\sw\Python\Lib\site-packages\pythonwin\pywin\tools\hierlist.py

python_create_ts: 11/03/2003 01:34 PM
win_create_ts : 11/03/2003 02:34 PM

python_write_ts : 11/03/2003 01:34 PM
win_write_ts : 11/03/2003 02:34 PM


File Name : P:\sw\Python\Lib\site-packages\win32\license.txt

python_create_ts: 02/21/2001 04:53 AM
win_create_ts : 02/21/2001 05:53 AM

python_access_ts: 02/21/2001 04:53 AM
win_access_ts : 02/21/2001 05:53 AM

python_write_ts : 02/21/2001 04:53 AM
win_write_ts : 02/21/2001 05:53 AM


File Name : P:\sw\Python\Lib\site-packages\win32\win32file.pyd

python_access_ts: 05/31/2007 04:24 PM
win_access_ts : 05/31/2007 04:14 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\BackupRead_BackupWrite.py

python_create_ts: 01/07/2005 06:20 AM
win_create_ts : 01/07/2005 07:20 AM

python_write_ts : 01/07/2005 06:20 AM
win_write_ts : 01/07/2005 07:20 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\BackupSeek_streamheaders.py

python_create_ts: 01/07/2005 06:20 AM
win_create_ts : 01/07/2005 07:20 AM

python_write_ts : 01/07/2005 06:20 AM
win_write_ts : 01/07/2005 07:20 AM


File Name : P:\sw\Python\Lib\site-packages\win32\Demos\cerapi.py

python_create_ts: 02/03/2003 06:25 AM
win_create_ts : 02/03/2003 07:25 AM

python_write_ts : 02/03/2003 06:25 AM
win_write_ts : 02/03/2003 07:25 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\FileSecurityTest.py

python_create_ts: 02/03/2003 06:25 AM
win_create_ts : 02/03/2003 07:25 AM

python_write_ts : 02/03/2003 06:25 AM
win_write_ts : 02/03/2003 07:25 AM


File Name : P:\sw\Python\Lib\site-packages\win32\Demos\rastest.py

python_create_ts: 02/03/2003 06:25 AM
win_create_ts : 02/03/2003 07:25 AM

python_write_ts : 02/03/2003 06:25 AM
win_write_ts : 02/03/2003 07:25 AM


File Name : P:\sw\Python\Lib\site-packages\win32\Demos\timer_demo.py

python_create_ts: 02/03/2003 06:25 AM
win_create_ts : 02/03/2003 07:25 AM

python_write_ts : 02/03/2003 06:25 AM
win_write_ts : 02/03/2003 07:25 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\win32clipboardDemo.py

python_create_ts: 02/03/2003 06:25 AM
win_create_ts : 02/03/2003 07:25 AM

python_write_ts : 02/03/2003 06:25 AM
win_write_ts : 02/03/2003 07:25 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\win32comport_demo.py

python_create_ts: 02/03/2003 06:25 AM
win_create_ts : 02/03/2003 07:25 AM

python_write_ts : 02/03/2003 06:25 AM
win_write_ts : 02/03/2003 07:25 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\win32gui_taskbar.py

python_create_ts: 12/31/2005 10:28 AM
win_create_ts : 12/31/2005 11:28 AM

python_write_ts : 12/31/2005 10:28 AM
win_write_ts : 12/31/2005 11:28 AM


File Name : P:\sw\Python\Lib\site-packages\win32\Demos\win32netdemo.py

python_create_ts: 02/03/2003 06:25 AM
win_create_ts : 02/03/2003 07:25 AM

python_write_ts : 02/03/2003 06:25 AM
win_write_ts : 02/03/2003 07:25 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\win32servicedemo.py

python_create_ts: 02/03/2003 06:25 AM
win_create_ts : 02/03/2003 07:25 AM

python_write_ts : 02/03/2003 06:25 AM
win_write_ts : 02/03/2003 07:25 AM


File Name : P:\sw\Python\Lib\site-packages\win32\Demos\winprocess.py

python_create_ts: 02/03/2003 06:25 AM
win_create_ts : 02/03/2003 07:25 AM

python_write_ts : 02/03/2003 06:25 AM
win_write_ts : 02/03/2003 07:25 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\account_rights.py

python_create_ts: 11/18/2002 06:09 PM
win_create_ts : 11/18/2002 07:09 PM

python_write_ts : 11/18/2002 06:09 PM
win_write_ts : 11/18/2002 07:09 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\get_policy_info.py

python_create_ts: 02/25/2003 02:42 PM
win_create_ts : 02/25/2003 03:42 PM

python_write_ts : 02/25/2003 02:42 PM
win_write_ts : 02/25/2003 03:42 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\list_rights.py

python_create_ts: 02/26/2003 03:17 PM
win_create_ts : 02/26/2003 04:17 PM

python_write_ts : 02/26/2003 03:17 PM
win_write_ts : 02/26/2003 04:17 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\regsave_sa.py

python_create_ts: 03/07/2003 01:46 PM
win_create_ts : 03/07/2003 02:46 PM

python_write_ts : 03/07/2003 01:46 PM
win_write_ts : 03/07/2003 02:46 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\regsecurity.py

python_create_ts: 02/26/2003 06:41 PM
win_create_ts : 02/26/2003 07:41 PM

python_write_ts : 02/26/2003 06:41 PM
win_write_ts : 02/26/2003 07:41 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\security_enums.py

python_create_ts: 11/04/2002 05:05 PM
win_create_ts : 11/04/2002 06:05 PM

python_write_ts : 11/04/2002 05:05 PM
win_write_ts : 11/04/2002 06:05 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\set_file_owner.py

python_create_ts: 02/25/2003 02:16 PM
win_create_ts : 02/25/2003 03:16 PM

python_write_ts : 02/25/2003 02:16 PM
win_write_ts : 02/25/2003 03:16 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\set_policy_info.py

python_create_ts: 02/25/2003 02:46 PM
win_create_ts : 02/25/2003 03:46 PM

python_write_ts : 02/25/2003 02:46 PM
win_write_ts : 02/25/2003 03:46 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\sspi\.#fetch_url.py.1.1

python_create_ts: 11/08/2005 11:00 AM
win_create_ts : 11/08/2005 12:00 PM

python_access_ts: 11/08/2005 11:00 AM
win_access_ts : 11/08/2005 12:00 PM

python_write_ts : 11/08/2005 11:00 AM
win_write_ts : 11/08/2005 12:00 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\sspi\fetch_url.py

python_create_ts: 11/23/2005 08:48 AM
win_create_ts : 11/23/2005 09:48 AM

python_write_ts : 11/23/2005 08:48 AM
win_write_ts : 11/23/2005 09:48 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\security\sspi\fetch_url_digest.patch

python_create_ts: 11/23/2005 08:47 AM
win_create_ts : 11/23/2005 09:47 AM

python_access_ts: 11/23/2005 08:47 AM
win_access_ts : 11/23/2005 09:47 AM

python_write_ts : 11/23/2005 08:47 AM
win_write_ts : 11/23/2005 09:47 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\Demos\win32wnet\testwnet.py

python_create_ts: 02/09/2001 01:25 PM
win_create_ts : 02/09/2001 02:25 PM

python_write_ts : 02/09/2001 01:25 PM
win_write_ts : 02/09/2001 02:25 PM


File Name : P:\sw\Python\Lib\site-packages\win32\lib\mmsystem.py

python_create_ts: 01/10/2006 10:29 AM
win_create_ts : 01/10/2006 11:29 AM

python_write_ts : 01/10/2006 10:29 AM
win_write_ts : 01/10/2006 11:29 AM


File Name : P:\sw\Python\Lib\site-packages\win32\lib\pywintypes.py

python_create_ts: 02/15/2006 08:20 AM
win_create_ts : 02/15/2006 09:20 AM

python_write_ts : 02/15/2006 08:20 AM
win_write_ts : 02/15/2006 09:20 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\lib\win32serviceutil.py

python_create_ts: 01/10/2006 06:04 AM
win_create_ts : 01/10/2006 07:04 AM

python_write_ts : 01/10/2006 06:04 AM
win_write_ts : 01/10/2006 07:04 AM


File Name : P:\sw\Python\Lib\site-packages\win32\lib\win32timezone.py

python_create_ts: 01/03/2006 04:12 AM
win_create_ts : 01/03/2006 05:12 AM

python_write_ts : 01/03/2006 04:12 AM
win_write_ts : 01/03/2006 05:12 AM


File Name : P:\sw\Python\Lib\site-packages\win32\lib\win32traceutil.py

python_create_ts: 01/08/2002 11:41 AM
win_create_ts : 01/08/2002 12:41 PM

python_write_ts : 01/08/2002 11:41 AM
win_write_ts : 01/08/2002 12:41 PM


File Name : P:\sw\Python\Lib\site-packages\win32\lib\winnt.py

python_create_ts: 01/10/2006 09:30 AM
win_create_ts : 01/10/2006 10:30 AM

python_write_ts : 01/10/2006 09:30 AM
win_write_ts : 01/10/2006 10:30 AM


File Name : P:\sw\Python\Lib\site-packages\win32\lib\winperf.py

python_create_ts: 11/16/2004 04:01 AM
win_create_ts : 11/16/2004 05:01 AM

python_write_ts : 11/16/2004 04:01 AM
win_write_ts : 11/16/2004 05:01 AM


File Name : P:\sw\Python\Lib\site-packages\win32\lib\winxptheme.py

python_create_ts: 11/07/2004 12:40 PM
win_create_ts : 11/07/2004 01:40 PM

python_write_ts : 11/07/2004 12:40 PM
win_write_ts : 11/07/2004 01:40 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\scripts\killProcName.py

python_create_ts: 11/21/1999 08:47 AM
win_create_ts : 11/21/1999 09:47 AM

python_write_ts : 11/21/1999 08:47 AM
win_write_ts : 11/21/1999 09:47 AM


File Name : P:\sw\Python\Lib\site-packages\win32\scripts\ce\pysynch.py

python_create_ts: 03/08/2000 03:57 PM
win_create_ts : 03/08/2000 04:57 PM

python_write_ts : 03/08/2000 03:57 PM
win_write_ts : 03/08/2000 04:57 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\scripts\VersionStamp\BrandProject.py

python_create_ts: 03/08/2000 03:56 PM
win_create_ts : 03/08/2000 04:56 PM

python_write_ts : 03/08/2000 03:56 PM
win_write_ts : 03/08/2000 04:56 PM


File Name :
P:\sw\Python\Lib\site-packages\win32\test\test_clipboard.py

python_create_ts: 01/26/2004 10:22 AM
win_create_ts : 01/26/2004 11:22 AM

python_write_ts : 01/26/2004 10:22 AM
win_write_ts : 01/26/2004 11:22 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\test\test_win32event.py

python_create_ts: 01/25/2005 01:34 PM
win_create_ts : 01/25/2005 02:34 PM

python_write_ts : 01/25/2005 01:34 PM
win_write_ts : 01/25/2005 02:34 PM


File Name : P:\sw\Python\Lib\site-packages\win32\test\test_win32net.py

python_create_ts: 03/07/2004 05:48 AM
win_create_ts : 03/07/2004 06:48 AM

python_write_ts : 03/07/2004 05:48 AM
win_write_ts : 03/07/2004 06:48 AM


File Name :
P:\sw\Python\Lib\site-packages\win32\test\test_win32trace.py

python_create_ts: 03/07/2005 05:54 AM
win_create_ts : 03/07/2005 06:54 AM

python_write_ts : 03/07/2005 05:54 AM
win_write_ts : 03/07/2005 06:54 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\olectl.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\storagecon.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\util.py

python_create_ts: 03/13/2004 03:47 PM
win_create_ts : 03/13/2004 04:47 PM

python_write_ts : 03/13/2004 03:47 PM
win_write_ts : 03/13/2004 04:47 PM


File Name : P:\sw\Python\Lib\site-packages\win32com\__init__.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\client\dynamic.py

python_create_ts: 12/15/2005 04:10 AM
win_create_ts : 12/15/2005 05:10 AM

python_write_ts : 12/15/2005 04:10 AM
win_write_ts : 12/15/2005 05:10 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\client\gencache.py

python_create_ts: 02/11/2005 01:36 PM
win_create_ts : 02/11/2005 02:36 PM

python_write_ts : 02/11/2005 01:36 PM
win_write_ts : 02/11/2005 02:36 PM


File Name : P:\sw\Python\Lib\site-packages\win32com\demos\connect.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\demos\eventsApartmentThreaded.py

python_create_ts: 02/27/2006 12:38 PM
win_create_ts : 02/27/2006 01:38 PM

python_write_ts : 02/27/2006 12:38 PM
win_write_ts : 02/27/2006 01:38 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\demos\eventsFreeThreaded.py

python_create_ts: 02/27/2006 12:38 PM
win_create_ts : 02/27/2006 01:38 PM

python_write_ts : 02/27/2006 12:38 PM
win_write_ts : 02/27/2006 01:38 PM


File Name : P:\sw\Python\Lib\site-packages\win32com\demos\iebutton.py

python_create_ts: 03/09/2006 08:36 AM
win_create_ts : 03/09/2006 09:36 AM

python_write_ts : 03/09/2006 08:36 AM
win_write_ts : 03/09/2006 09:36 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\demos\ietoolbar.py

python_create_ts: 02/11/2006 01:02 PM
win_create_ts : 02/11/2006 02:02 PM

python_write_ts : 02/11/2006 01:02 PM
win_write_ts : 02/11/2006 02:02 PM


File Name : P:\sw\Python\Lib\site-packages\win32com\makegw\makegw.py

python_create_ts: 01/25/2005 06:34 PM
win_create_ts : 01/25/2005 07:34 PM

python_write_ts : 01/25/2005 06:34 PM
win_write_ts : 01/25/2005 07:34 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\makegw\makegwenum.py

python_create_ts: 01/05/2000 10:46 AM
win_create_ts : 01/05/2000 11:46 AM

python_write_ts : 01/05/2000 10:46 AM
win_write_ts : 01/05/2000 11:46 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\server\connect.py

python_create_ts: 11/11/2000 08:56 AM
win_create_ts : 11/11/2000 09:56 AM

python_write_ts : 11/11/2000 08:56 AM
win_write_ts : 11/11/2000 09:56 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\server\factory.py

python_create_ts: 03/02/2000 05:46 PM
win_create_ts : 03/02/2000 06:46 PM

python_write_ts : 03/02/2000 05:46 PM
win_write_ts : 03/02/2000 06:46 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\server\localserver.py

python_create_ts: 12/13/2002 04:59 AM
win_create_ts : 12/13/2002 05:59 AM

python_write_ts : 12/13/2002 04:59 AM
win_write_ts : 12/13/2002 05:59 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\server\__init__.py

python_create_ts: 02/11/2001 03:51 PM
win_create_ts : 02/11/2001 04:51 PM

python_write_ts : 02/11/2001 03:51 PM
win_write_ts : 02/11/2001 04:51 PM


File Name : P:\sw\Python\Lib\site-packages\win32com\servers\interp.py

python_create_ts: 12/18/2002 10:19 AM
win_create_ts : 12/18/2002 11:19 AM

python_write_ts : 12/18/2002 10:19 AM
win_write_ts : 12/18/2002 11:19 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\GenTestScripts.py

python_create_ts: 11/18/2002 05:20 PM
win_create_ts : 11/18/2002 06:20 PM

python_write_ts : 11/18/2002 05:20 PM
win_write_ts : 11/18/2002 06:20 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\policySemantics.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testADOEvents.py

python_create_ts: 11/18/2002 05:20 PM
win_create_ts : 11/18/2002 06:20 PM

python_write_ts : 11/18/2002 05:20 PM
win_write_ts : 11/18/2002 06:20 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testAXScript.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testCollections.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\test\testDCOM.py

python_create_ts: 11/18/2002 05:20 PM
win_create_ts : 11/18/2002 06:20 PM

python_write_ts : 11/18/2002 05:20 PM
win_write_ts : 11/18/2002 06:20 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testDictionary.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testDictionary.vbs

python_create_ts: 11/10/2003 04:01 AM
win_create_ts : 11/10/2003 05:01 AM

python_access_ts: 11/10/2003 04:01 AM
win_access_ts : 11/10/2003 05:01 AM

python_write_ts : 11/10/2003 04:01 AM
win_write_ts : 11/10/2003 05:01 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testDynamic.py

python_create_ts: 11/18/2002 05:20 PM
win_create_ts : 11/18/2002 06:20 PM

python_write_ts : 11/18/2002 05:20 PM
win_write_ts : 11/18/2002 06:20 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testExplorer.py

python_create_ts: 01/10/2006 12:20 PM
win_create_ts : 01/10/2006 01:20 PM

python_write_ts : 01/10/2006 12:20 PM
win_write_ts : 01/10/2006 01:20 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testGatewayAddresses.py

python_create_ts: 11/18/2002 05:20 PM
win_create_ts : 11/18/2002 06:20 PM

python_write_ts : 11/18/2002 05:20 PM
win_write_ts : 11/18/2002 06:20 PM


File Name : P:\sw\Python\Lib\site-packages\win32com\test\testGIT.py

python_create_ts: 01/10/2006 10:02 AM
win_create_ts : 01/10/2006 11:02 AM

python_write_ts : 01/10/2006 10:02 AM
win_write_ts : 01/10/2006 11:02 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testIterators.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testNetscape.py

python_create_ts: 11/18/2002 05:20 PM
win_create_ts : 11/18/2002 06:20 PM

python_write_ts : 11/18/2002 05:20 PM
win_write_ts : 11/18/2002 06:20 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testPersist.py

python_create_ts: 11/02/2003 09:37 AM
win_create_ts : 11/02/2003 10:37 AM

python_write_ts : 11/02/2003 09:37 AM
win_write_ts : 11/02/2003 10:37 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\test\testPippo.py

python_create_ts: 01/10/2006 12:29 PM
win_create_ts : 01/10/2006 01:29 PM

python_write_ts : 01/10/2006 12:29 PM
win_write_ts : 01/10/2006 01:29 PM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testStorage.py

python_create_ts: 11/10/2003 06:49 AM
win_create_ts : 11/10/2003 07:49 AM

python_write_ts : 11/10/2003 06:49 AM
win_write_ts : 11/10/2003 07:49 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testStreams.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name :
P:\sw\Python\Lib\site-packages\win32com\test\testvbscript_regexp.py

python_create_ts: 11/10/2003 06:49 AM
win_create_ts : 11/10/2003 07:49 AM

python_write_ts : 11/10/2003 06:49 AM
win_write_ts : 11/10/2003 07:49 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\test\testxslt.js

python_create_ts: 01/26/2002 07:43 AM
win_create_ts : 01/26/2002 08:43 AM

python_access_ts: 01/26/2002 07:43 AM
win_access_ts : 01/26/2002 08:43 AM

python_write_ts : 01/26/2002 07:43 AM
win_write_ts : 01/26/2002 08:43 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\test\testxslt.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\test\testxslt.xsl

python_create_ts: 01/26/2002 07:19 AM
win_create_ts : 01/26/2002 08:19 AM

python_access_ts: 01/26/2002 07:19 AM
win_access_ts : 01/26/2002 08:19 AM

python_write_ts : 01/26/2002 07:19 AM
win_write_ts : 01/26/2002 08:19 AM


File Name : P:\sw\Python\Lib\site-packages\win32com\test\__init__.py

python_create_ts: 01/26/2004 10:14 AM
win_create_ts : 01/26/2004 11:14 AM

python_write_ts : 01/26/2004 10:14 AM
win_write_ts : 01/26/2004 11:14 AM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\axscript\client\pyscript_rexec.py

python_create_ts: 02/09/2005 03:14 PM
win_create_ts : 02/09/2005 04:14 PM

python_write_ts : 02/09/2005 03:14 PM
win_write_ts : 02/09/2005 04:14 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\axscript\client\__init__.py

python_create_ts: 02/09/2005 02:57 PM
win_create_ts : 02/09/2005 03:57 PM

python_write_ts : 02/09/2005 02:57 PM
win_write_ts : 02/09/2005 03:57 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\axscript\Demos\client\asp\interrupt\test.asp

python_create_ts: 12/18/2002 05:56 PM
win_create_ts : 12/18/2002 06:56 PM

python_access_ts: 12/18/2002 05:56 PM
win_access_ts : 12/18/2002 06:56 PM

python_write_ts : 12/18/2002 05:56 PM
win_write_ts : 12/18/2002 06:56 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\axscript\Demos\client\asp\interrupt\test.html

python_create_ts: 12/18/2002 05:56 PM
win_create_ts : 12/18/2002 06:56 PM

python_access_ts: 12/18/2002 05:56 PM
win_access_ts : 12/18/2002 06:56 PM

python_write_ts : 12/18/2002 05:56 PM
win_write_ts : 12/18/2002 06:56 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\axscript\Demos\client\asp\interrupt\test1.asp

python_create_ts: 12/18/2002 05:56 PM
win_create_ts : 12/18/2002 06:56 PM

python_access_ts: 12/18/2002 05:56 PM
win_access_ts : 12/18/2002 06:56 PM

python_write_ts : 12/18/2002 05:56 PM
win_write_ts : 12/18/2002 06:56 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\axscript\Demos\client\asp\interrupt\test1.html

python_create_ts: 12/18/2002 05:56 PM
win_create_ts : 12/18/2002 06:56 PM

python_access_ts: 12/18/2002 05:56 PM
win_access_ts : 12/18/2002 06:56 PM

python_write_ts : 12/18/2002 05:56 PM
win_write_ts : 12/18/2002 06:56 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\axscript\Demos\client\ie\demo_check.htm

python_create_ts: 01/18/2002 09:13 AM
win_create_ts : 01/18/2002 10:13 AM

python_access_ts: 01/18/2002 09:13 AM
win_access_ts : 01/18/2002 10:13 AM

python_write_ts : 01/18/2002 09:13 AM
win_write_ts : 01/18/2002 10:13 AM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\axscript\Demos\client\ie\demo_intro.htm

python_create_ts: 01/18/2002 09:13 AM
win_create_ts : 01/18/2002 10:13 AM

python_access_ts: 01/18/2002 09:13 AM
win_access_ts : 01/18/2002 10:13 AM

python_write_ts : 01/18/2002 09:13 AM
win_write_ts : 01/18/2002 10:13 AM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\axscript\test\leakTest.py

python_create_ts: 12/18/2002 05:57 PM
win_create_ts : 12/18/2002 06:57 PM

python_write_ts : 12/18/2002 05:57 PM
win_write_ts : 12/18/2002 06:57 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\directsound\__init__.py

python_create_ts: 12/01/2004 03:34 AM
win_create_ts : 12/01/2004 04:34 AM

python_write_ts : 12/01/2004 03:34 AM
win_write_ts : 12/01/2004 04:34 AM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\mapi\mapitags.py

python_create_ts: 01/26/2004 05:02 PM
win_create_ts : 01/26/2004 06:02 PM

python_write_ts : 01/26/2004 05:02 PM
win_write_ts : 01/26/2004 06:02 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\mapi\mapiutil.py

python_create_ts: 01/26/2004 05:02 PM
win_create_ts : 01/26/2004 06:02 PM

python_write_ts : 01/26/2004 05:02 PM
win_write_ts : 01/26/2004 06:02 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\shell\demos\create_link.py

python_create_ts: 01/06/2000 06:02 PM
win_create_ts : 01/06/2000 07:02 PM

python_write_ts : 01/06/2000 06:02 PM
win_write_ts : 01/06/2000 07:02 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\shell\demos\servers\column_provider.py

python_create_ts: 11/06/2003 12:12 PM
win_create_ts : 11/06/2003 01:12 PM

python_write_ts : 11/06/2003 12:12 PM
win_write_ts : 11/06/2003 01:12 PM


File Name :
P:\sw\Python\Lib\site-packages\win32comext\shell\test\testShellFolder.py

python_create_ts: 01/26/2004 10:16 AM
win_create_ts : 01/26/2004 11:16 AM

python_write_ts : 01/26/2004 10:16 AM
win_write_ts : 01/26/2004 11:16 AM


File Name : P:\sw\Python\Lib\sqlite3\dbapi2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sqlite3\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sqlite3\test\dbapi.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sqlite3\test\factory.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sqlite3\test\hooks.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sqlite3\test\regression.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sqlite3\test\transactions.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sqlite3\test\types.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\sqlite3\test\userfunctions.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\autotest.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\bad_coding2.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\cjkencodings_test.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\doctest_aliases.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\double_const.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\fork_wait.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\infinite_reload.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\inspect_fodder.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\inspect_fodder2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\list_tests.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\mapping_tests.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\outstanding_bugs.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\pickletester.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\pyclbr_input.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\pydocfodder.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\pystone.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\regex_tests.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\regrtest.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\reperf.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\re_tests.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\sample_doctest.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\seq_tests.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\sortperf.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\string_tests.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\testall.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\testcodec.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_aepack.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_al.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_anydbm.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_applesingle.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_array.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_ast.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_asynchat.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_atexit.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_audioop.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_augassign.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_base64.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bastion.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bigaddrspace.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bigmem.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_binascii.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_binhex.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_binop.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bisect.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bool.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bsddb.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bsddb185.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bsddb3.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bufio.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_builtin.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_bz2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_calendar.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_call.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_capi.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_cd.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_cfgparser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_cgi.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_charmapcodec.py

python_create_ts: 02/20/2006 09:47 AM
win_create_ts : 02/20/2006 10:47 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/20/2006 09:47 AM
win_write_ts : 02/20/2006 10:47 AM


File Name : P:\sw\Python\Lib\test\test_cl.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_class.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_cmath.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_cmd_line.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_code.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codeccallbacks.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecencodings_cn.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecencodings_hk.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecencodings_jp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecencodings_kr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecencodings_tw.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecmaps_cn.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecmaps_hk.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecmaps_jp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecmaps_kr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecmaps_tw.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_codecs.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_codeop.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_coding.py

python_create_ts: 01/18/2006 11:43 AM
win_create_ts : 01/18/2006 12:43 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/18/2006 11:43 AM
win_write_ts : 01/18/2006 12:43 PM


File Name : P:\sw\Python\Lib\test\test_coercion.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_colorsys.py

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\test\test_commands.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_compare.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_compile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_compiler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_complex.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_complex_args.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_contains.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_contextlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_cookie.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_cookielib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_copy.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\test_copy_reg.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_cpickle.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_cProfile.py

python_create_ts: 02/14/2006 10:19 PM
win_create_ts : 02/14/2006 11:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/14/2006 10:19 PM
win_write_ts : 02/14/2006 11:19 PM


File Name : P:\sw\Python\Lib\test\test_crypt.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_csv.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_ctypes.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\test\test_curses.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_datetime.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_dbm.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_decimal.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_decorators.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_defaultdict.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_deque.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_descr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_descrtut.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_dict.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_difflib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_dircache.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_dis.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_distutils.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_dl.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_doctest.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_doctest2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_dumbdbm.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_dummy_thread.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_dummy_threading.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_email.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_email_codecs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_email_renamed.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_enumerate.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_eof.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_errno.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_exceptions.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_exception_variations.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\test_extcall.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_fcntl.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_file.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_filecmp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_fileinput.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_float.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_fnmatch.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_fork1.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_format.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_fpformat.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_frozen.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_funcattrs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_functools.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_future.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_future1.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_future2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_future3.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_gc.py

python_create_ts: 03/07/2006 01:14 PM
win_create_ts : 03/07/2006 02:14 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/07/2006 01:14 PM
win_write_ts : 03/07/2006 02:14 PM


File Name : P:\sw\Python\Lib\test\test_gdbm.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_generators.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_genexps.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_getargs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_getargs2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_getopt.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_gettext.py

python_create_ts: 02/20/2006 09:47 AM
win_create_ts : 02/20/2006 10:47 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/20/2006 09:47 AM
win_write_ts : 02/20/2006 10:47 AM


File Name : P:\sw\Python\Lib\test\test_gl.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_glob.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_global.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_grammar.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_grp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_gzip.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_hash.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_hashlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_heapq.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\test\test_hexoct.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_hmac.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_hotshot.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\test\test_htmllib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_htmlparser.py

python_create_ts: 03/10/2006 11:59 AM
win_create_ts : 03/10/2006 12:59 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/10/2006 11:59 AM
win_write_ts : 03/10/2006 12:59 PM


File Name : P:\sw\Python\Lib\test\test_httplib.py

python_create_ts: 02/18/2006 01:41 PM
win_create_ts : 02/18/2006 02:41 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/18/2006 01:41 PM
win_write_ts : 02/18/2006 02:41 PM


File Name : P:\sw\Python\Lib\test\test_imageop.py

python_create_ts: 02/18/2006 01:41 PM
win_create_ts : 02/18/2006 02:41 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/18/2006 01:41 PM
win_write_ts : 02/18/2006 02:41 PM


File Name : P:\sw\Python\Lib\test\test_imaplib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_imgfile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_imp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_import.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_importhooks.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_index.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_inspect.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_ioctl.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_isinstance.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_iter.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_iterlen.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_itertools.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_largefile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_linuxaudiodev.py

python_create_ts: 01/18/2006 11:43 AM
win_create_ts : 01/18/2006 12:43 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/18/2006 11:43 AM
win_write_ts : 01/18/2006 12:43 PM


File Name : P:\sw\Python\Lib\test\test_list.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_locale.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_logging.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_long.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_longexp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_long_future.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_macfs.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_macostools.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_macpath.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_mailbox.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_marshal.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_math.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_md5.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_mhlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_mimetools.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_mimetypes.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_MimeWriter.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_minidom.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_mmap.py

python_create_ts: 02/06/2006 09:04 AM
win_create_ts : 02/06/2006 10:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/06/2006 09:04 AM
win_write_ts : 02/06/2006 10:04 AM


File Name : P:\sw\Python\Lib\test\test_module.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_multibytecodec.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_multibytecodec_support.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_multifile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_mutants.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_netrc.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_new.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_nis.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_normalization.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_ntpath.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_old_mailbox.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_opcodes.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_openpty.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_operations.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_operator.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_optparse.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_os.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_ossaudiodev.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_parser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_peepholer.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pep247.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pep263.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pep277.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pep292.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pep352.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pickle.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pickletools.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pkg.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pkgimport.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_platform.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_plistlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_poll.py

python_create_ts: 01/18/2006 11:43 AM
win_create_ts : 01/18/2006 12:43 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/18/2006 11:43 AM
win_write_ts : 01/18/2006 12:43 PM


File Name : P:\sw\Python\Lib\test\test_popen.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_popen2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_posix.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_posixpath.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pow.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pprint.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_profile.py

python_create_ts: 02/14/2006 10:19 PM
win_create_ts : 02/14/2006 11:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 02/14/2006 10:19 PM
win_write_ts : 02/14/2006 11:19 PM


File Name : P:\sw\Python\Lib\test\test_profilehooks.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pty.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pwd.py

python_create_ts: 01/18/2006 11:43 AM
win_create_ts : 01/18/2006 12:43 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/18/2006 11:43 AM
win_write_ts : 01/18/2006 12:43 PM


File Name : P:\sw\Python\Lib\test\test_pyclbr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_pyexpat.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_queue.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_quopri.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_random.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_re.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_repr.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_resource.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_rfc822.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_rgbimg.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\test_richcmp.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_robotparser.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_runpy.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_sax.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_scope.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_scriptpackages.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_select.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_set.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_sets.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_sgmllib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_sha.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_shelve.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_shlex.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_shutil.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_signal.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_site.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_slice.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_socket.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_socketserver.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_socket_ssl.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_softspace.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_sort.py

python_create_ts: 11/28/2005 06:26 PM
win_create_ts : 11/28/2005 07:26 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/28/2005 06:26 PM
win_write_ts : 11/28/2005 07:26 PM


File Name : P:\sw\Python\Lib\test\test_sqlite.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_startfile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_str.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_strftime.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_string.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_StringIO.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_stringprep.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_strop.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_strptime.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_struct.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_structmembers.py

python_create_ts: 12/12/2006 05:20 PM
win_create_ts : 12/12/2006 06:20 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 12/12/2006 05:20 PM
win_write_ts : 12/12/2006 06:20 PM


File Name : P:\sw\Python\Lib\test\test_structseq.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_subprocess.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\test\test_sunaudiodev.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_sundry.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_support.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_symtable.py

python_create_ts: 01/26/2006 10:52 AM
win_create_ts : 01/26/2006 11:52 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/26/2006 10:52 AM
win_write_ts : 01/26/2006 11:52 AM


File Name : P:\sw\Python\Lib\test\test_syntax.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_sys.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_tarfile.py

python_create_ts: 01/19/2007 10:04 AM
win_create_ts : 01/19/2007 11:04 AM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/19/2007 10:04 AM
win_write_ts : 01/19/2007 11:04 AM


File Name : P:\sw\Python\Lib\test\test_tcl.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_tempfile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_textwrap.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_thread.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_threadedtempfile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_threaded_import.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_threading.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_threading_local.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_threadsignals.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_time.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_timeout.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_tokenize.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_trace.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_traceback.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_transformer.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_tuple.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_types.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_ucn.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_unary.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_unicode.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_unicodedata.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_unicode_file.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_unittest.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_univnewlines.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_unpack.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_urllib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_urllib2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_urllib2net.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_urllibnet.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_urlparse.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_userdict.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_userlist.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_userstring.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_uu.py

python_create_ts: 11/28/2005 06:26 PM
win_create_ts : 11/28/2005 07:26 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 11/28/2005 06:26 PM
win_write_ts : 11/28/2005 07:26 PM


File Name : P:\sw\Python\Lib\test\test_uuid.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_wait3.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_wait4.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_warnings.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_wave.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_weakref.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_whichdb.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_winreg.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_winsound.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_with.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_wsgiref.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_xdrlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_xmllib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_xmlrpc.py

python_create_ts: 01/18/2006 11:43 AM
win_create_ts : 01/18/2006 12:43 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/18/2006 11:43 AM
win_write_ts : 01/18/2006 12:43 PM


File Name : P:\sw\Python\Lib\test\test_xml_etree.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_xml_etree_c.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_xpickle.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_xrange.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_zipfile.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_zipfile64.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_zipimport.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test_zlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test__locale.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test___all__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\test___future__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\tf_inherit_check.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\threaded_import_hangers.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\time_hashlib.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\xmltests.py

python_create_ts: 01/18/2006 11:43 AM
win_create_ts : 01/18/2006 12:43 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 01/18/2006 11:43 AM
win_write_ts : 01/18/2006 12:43 PM


File Name : P:\sw\Python\Lib\test\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\crashers\bogus_code_obj.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\crashers\borrowed_ref_1.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\crashers\borrowed_ref_2.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\crashers\dangerous_subclassing.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\crashers\gc_inspection.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\crashers\infinite_rec_1.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\crashers\infinite_rec_2.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\crashers\infinite_rec_4.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\crashers\infinite_rec_5.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\crashers\loosing_dict_ref.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\crashers\modify_dict_attr.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\crashers\nasty_eq_vs_dict.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\crashers\recursion_limit_too_high.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\crashers\recursive_call.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\crashers\weakref_in_del.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\leakers\test_ctypes.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\leakers\test_gestalt.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\leakers\test_selftype.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\test\leakers\__init__.py

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\output\test_cProfile

python_create_ts: 02/14/2006 10:19 PM
win_create_ts : 02/14/2006 11:19 PM

python_write_ts : 02/14/2006 10:19 PM
win_write_ts : 02/14/2006 11:19 PM


File Name : P:\sw\Python\Lib\test\output\test_grammar

python_create_ts: 03/06/2006 03:19 PM
win_create_ts : 03/06/2006 04:19 PM

python_write_ts : 03/06/2006 03:19 PM
win_write_ts : 03/06/2006 04:19 PM


File Name : P:\sw\Python\Lib\test\output\test_mmap

python_create_ts: 02/06/2006 09:04 AM
win_create_ts : 02/06/2006 10:04 AM

python_write_ts : 02/06/2006 09:04 AM
win_write_ts : 02/06/2006 10:04 AM


File Name : P:\sw\Python\Lib\test\output\test_poll

python_create_ts: 11/19/2005 04:06 PM
win_create_ts : 11/19/2005 05:06 PM

python_write_ts : 11/19/2005 04:06 PM
win_write_ts : 11/19/2005 05:06 PM


File Name : P:\sw\Python\Lib\test\output\test_profile

python_create_ts: 02/14/2006 10:19 PM
win_create_ts : 02/14/2006 11:19 PM

python_write_ts : 02/14/2006 10:19 PM
win_write_ts : 02/14/2006 11:19 PM


File Name : P:\sw\Python\Lib\wsgiref\handlers.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\wsgiref\headers.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\wsgiref\simple_server.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\wsgiref\util.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\wsgiref\validate.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\wsgiref\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\dom\domreg.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\dom\expatbuilder.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\dom\minicompat.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\dom\minidom.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\dom\NodeFilter.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\dom\pulldom.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\dom\xmlbuilder.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\dom\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\etree\cElementTree.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\etree\ElementInclude.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\etree\ElementPath.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\etree\ElementTree.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\etree\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\parsers\expat.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\parsers\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\sax\expatreader.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\sax\handler.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\sax\saxutils.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\sax\xmlreader.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\sax\_exceptions.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM


File Name : P:\sw\Python\Lib\xml\sax\__init__.py

python_access_ts: 05/30/2007 07:23 PM
win_access_ts : 05/30/2007 07:22 PM

Total Files Processed : 4626

Matched All 3 Dates : 3383
Did NOT Match All 3 Dates: 1243

Matched Create Date : 929
Did NOT Match Create Date: 314

Matched Access Date : 139
Did NOT Match Access Date: 1104

Matched Write Date : 929
Did NOT Match Write Date : 314
 
?

=?ISO-8859-15?Q?=22Martin_v=2E_L=F6wis=22?=

I created a file and specifically set the created date, last accessed date
and last write date to

01/02/2003 12:34:56

How did you do that?
In the case of my above test I know exactly what the timestamp on the file
is because I manually set it so that all 3 timestamps are the same.
Since Python 2.5.1 does not return the known values for that files
timestamps how can it not be a Python 2.5.1 bug?

The program you've been using to set the time stamp to the old date
may not be working correctly.
Further testing shows that the results are somewhat inconsistent, many times
the create and access date are correct but the Last Write timestamp is
wrong. It is generally off by one hour but I have seen situations where it
was +1 hour and other situations where it was -1 hour.

In these cases, always ask yourself whether the time-zone of that time
stamp is different from the current time zone. In particular, did
these old time stamps live in non-DST, and the current time zone is
a DST one?
I even found situations where the python timestamp was 1 minute later. (I
know about the 2 second timestamps on FAT, all my filesystems are NTFS). I
just found a situation where the python timestamp was 02:51 PM and the
windows timestamp was 02:12 PM. DST or timezone changes are not going to
make the results be off by 39 minutes? (My timezone is GMT - 5:00).

Right. If that is reproducable, it is a bug. Please create a zip file
containing this file, and submit a bug report to sf.net/projects/python.

Regards,
Martin
 
J

Joe Salmeri

"Martin v. Löwis" said:
How did you do that?

I used a "touch" utility to set the dates but let's try it a different way.

Let's use Python 2.5.1 to set the timestamps

---->> set file timestamp
import pywintypes
import win32file
import sys

file_name = sys.argv[1]
new_timestamp = pywintypes.Time([2003, 1, 2, 12, 34, 56])

f = win32file.CreateFile(file_name, win32file.GENERIC_WRITE, 0, None,
win32file.OPEN_EXISTING, 0, 0)
win32file.SetFileTime(f, new_timestamp, new_timestamp, new_timestamp)
f.Close()

Next I created an empty file with notepad.

Then I used the above code to set the 3 timestamps.

Let's confirm that Windows has the timestamps set to what we set them too.

Here are the timestamps as reported by Windows:

dir /tc joe.txt

01/02/2003 12:34 PM 0 joe.txt

dir /ta joe.txt

01/02/2003 12:34 PM 0 joe.txt

dir /tw joe.txt

01/02/2003 12:34 PM 0 joe.txt

Looks like the python code worked to correctly set the timestamps
(Note you can also verify them using properties on the file in Windows
Explorer)

Here is some python code to print out the timestamps:

import os
import stat
import sys
import time

file_name = sys.argv[1]

file_stats = os.stat(file_name)

print 'Creation Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_CTIME]))
print 'Last Access Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_ATIME]))
print 'Last Write Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_MTIME]))

Now let's see what Python 2.4.2 says about the file

Creation Time: 01/02/2003 12:34:56
Last Access Time: 01/02/2003 12:34:56
Last Write Time: 01/02/2003 12:34:56

Looks like Python 2.4.2 is reporting the timestamps correctly

Now let's see what Python 2.5.1 says

Creation Time: 01/02/2003 11:34:56
Last Access Time: 01/02/2003 11:34:56
Last Write Time: 01/02/2003 11:34:56

All times are off by 1 hour!

Let's re-verify that Windows still says the timestamps are 01/02/2003
12:34:56.

dir /tc joe.txt

01/02/2003 12:34 PM 0 joe.txt

dir /ta joe.txt

01/02/2003 12:34 PM 0 joe.txt

dir /tw joe.txt

01/02/2003 12:34 PM 0 joe.txt

Windows still says the times are what we set them too.

Opening up Windows Explorer also confirms that the times are still
01/02/2003 12:34:56.

My text editor has a was to display the file names and timestamp info just
like a dir command

Let's see what it says:

h: joe .txt 0 1/02/03 12:34 \

The text editor is reporting the correct timestamps too.

So far everything else I try seems to report the timestamps correctly except
for Python 2.5.1.

It is difficult for me to believe that EVERYTHING else is wrong and Python
2.5.1 is correct, especially when you consider the fact that the code in
Python 2.5.1 that performs this functionality is not the same code that was
used in previous Python versions.

Normally if something is not working, the biggest suspect is the last thing
changed.

In my other msg I posted a program that compares the timestamps of a dir
/tc, dir /ta, and dir /tw for all files against what Python is reporting.

This allows us to easily verify what Windows says the timestamps are versus
what Python says they are.

Python 2.4.2 ALWAYS got it correct.

Python 2.5.1 gets it wrong as much as 50% of the time.

So unless you are saying that Windows is wrong, Python 2.5.1 has to be wrong
since it does not compare to what Windows reports. Since everything else I
have tried matches what Windows reports that leads me to believe that Python
2.5.1 has to be wrong.
Right. If that is reproducable, it is a bug. Please create a zip file
containing this file, and submit a bug report to sf.net/projects/python.

Please see my other msg, I ran the program in that msg against the
Python\lib directory: I tried it on multiple machines and found the same
problems occurring. I already submitted a bug report with the sample code
that demonstrates the problem.

All Python 2.4.2 timestamps match what Windows reports

The Python 2.5.1 timestamps vary
Sometimes python is +1 minute
Sometimes python is -1 hour
Sometimes python is +59 minutes
Sometimes python is +42 minutes
Sometimes python is +37 minutes
Sometimes python +2 minutes
Sometimes python +30 minutes
Sometimes python +3 minutes
Sometimes python +33 minutes

There is no way a timezone difference could explain those variations.

Bottom line is that Python should be reporting what Windows reports.

Even if it turns out that Windows has a bug and is wrong I still think that
Python should be reporting the same thing because what Windows reports is
what is expected. If Python reports something different (even if it was
correct) the information is not useful if it differs from what everything
else is reporting.

I hope I have provided enough information for you to reproduce the bug so
that a solution can be found.

Thanks for your time investigating this.
 
T

Terry Reedy

| I hope I have provided enough information for you to reproduce the bug so
| that a solution can be found.

If, when discussion is concluded here, you still think there is a bug, file
a report on SF. Make a concise summary in the comments section and attach
a file with the output from your experiments. You may have to submit the
attachment separately after first submitting the report.

Keep in mind that all the 'you's who might fix this are volunteers just
like you.

tjr
 
J

Joe Salmeri

Hi Terry,
If, when discussion is concluded here, you still think there is a bug,
file
a report on SF. Make a concise summary in the comments section and attach
a file with the output from your experiments. You may have to submit the
attachment separately after first submitting the report.

I have submitted the bug report and test script to SF.

I purposely used the Python\lib directory for my test so that anyone could
run the test and get the results.
Keep in mind that all the 'you's who might fix this are volunteers just
like you.r

Understood, that's why I went to such great time and effort to create the
scripts which demonstrate the problem.

I'd fix it if I could but think that it would be better for the person that
made the change in os.stat for Python 2.5.1 since they would be much more
aware of the extent of that change.
 
?

=?ISO-8859-15?Q?=22Martin_v=2E_L=F6wis=22?=

Reviewing my code it seems that it should still work with the 2.5.1 os.stat
changes however that does not appear to be the case.

Timestamps reported by os.stat() are no longer correct and the results are
not even consistent.

I don't think this is the case. The results Python reports are correct
and consistent.
In my first test case ALL 3 timestamps reported by Python are 1 hour less
than the actual timestamp on the file.

No. Instead, your *rendering* of the time-stamp is 1 hour less than
what you expect to see. This is because you render the time stamp
according to the current time zone (which is daylight-saving),
not according to the time-zone that was in effect when the file
was created (which was regular time).
Assuming there is no error in the following code that prints out the
timestamps using the new return value from os.stat() then it would appear
that the 2.5.1 os.stat changes have a bug.

print 'Creation Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_CTIME]))
print 'Last Access Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_ATIME]))
print 'Last Write Time: %s' % time.strftime('%m/%d/%Y %H:%M:%S',
time.localtime(file_stats[stat.ST_MTIME]))

It's not clear whether it's an error, however, localtime() does
something different from what dir does.

Regards,
Martin
 
?

=?ISO-8859-15?Q?=22Martin_v=2E_L=F6wis=22?=

How did you do that?
I used a "touch" utility to set the dates but let's try it a different way.

What touch utility specifically? Is source code available of that tool?
Looks like Python 2.4.2 is reporting the timestamps correctly

Unfortunately, no. Python 2.4 (and earlier) has an error that the
time stamps it reports may be off by an hour. This error is offset
by the fact that your rendering through localtime() gives result
different by one hour also, giving you the impression that Python
2.4 returns the correct result.
Now let's see what Python 2.5.1 says

Creation Time: 01/02/2003 11:34:56
Last Access Time: 01/02/2003 11:34:56
Last Write Time: 01/02/2003 11:34:56

All times are off by 1 hour!

The rendered times, yes. They are still correct - they are just
off by 1 hour, because your rendering algorithm is different from
the one that dir uses. It was 11:34 at the time when the file
was created, as there was no daylight-saving time in effect
in January 2003. According to your current time zone (which does
have daylight-saving time), it was 12:34 when the file was
created.
h: joe .txt 0 1/02/03 12:34 \

The text editor is reporting the correct timestamps too.

Define "correct". According to your current time zone, or taking into
account that the DST offset was different when the file was created?
Python 2.4.2 ALWAYS got it correct.

Unfortunately, it didn't. That was one of the reasons to change it.
So unless you are saying that Windows is wrong, Python 2.5.1 has to be wrong
since it does not compare to what Windows reports.

Windows isn't wrong. It just uses a different algorithm to render
historical time stamps. Neither approach is right or wrong:
- if you use the current time zone, you display a time-stamp that
wasn't the reading of the wall clock when the action happened
- if you adjust for DST changes, you get ambiguous time stamps,
as "2:30 am" may denote two different points in time on the
day when daylight saving time returns to normal time.

The one true way to render time stamps is in UTC/GMT/Zulu time :)
Even if it turns out that Windows has a bug and is wrong I still think that
Python should be reporting the same thing because what Windows reports is
what is expected. If Python reports something different (even if it was
correct) the information is not useful if it differs from what everything
else is reporting.

For the cases where there is a 1h difference, Python reports *exactly*
what Windows reports. Python 2.4 didn't.

Regards,
Martin
 
?

=?ISO-8859-15?Q?=22Martin_v=2E_L=F6wis=22?=

File Name : P:\sw\Python\Lib\cgi.pyc
python_access_ts: 05/31/2007 07:17 PM
win_access_ts : 05/31/2007 06:35 PM

File Name : P:\sw\Python\Lib\code.pyc

python_access_ts: 05/30/2007 07:59 PM
win_access_ts : 05/30/2007 07:22 PM

I have analyzed these cases in more detail, and found
that Windows (dir and Explorer) indeed reports incorrect
last-access times. This is documented in

http://www.microsoft.com/resources/.../proddocs/en-us/fsutil_behavior.mspx?mfr=true

In essence, there are two places where the last-access
time is stored: In the file itself, and in the directory.
While the stamp in the file is constantly updated, the
stamp in the directory is only updated if the difference
exceeds one hour. This is done for performance reasons.

Python 2.5 reports the true last access time, whereas
dir, Explorer, and Python 2.4 report an access time
that isn't quite the *last* access time.

To see this for yourself, you can open a file,
and watch the last-access time as reported by Windows
not change, whereas Python reports a recent access
(if the time stamp changes indeed, wait a few minutes,
and access the file again - if the file hasn't been
accessed for more than one hour, the first access
will always update the time stamp right away).

Regards,
Martin
 
J

Joe Salmeri

It's not clear whether it's an error, however, localtime() does
something different from what dir does.

Hi Martin,

First off thank you for spending your time to investigate this bug with me.

Thanks for pointing out the issue with Windows XP caching the access
timestamps,
I was not aware of that.

The reality is that I am most interested in the last write time because that
is
the timestamp that Windows displays when you issue a dir command (WITHOUT a
/t option),
what Windows Explorer displays in detail view, and what every other program
I have
found so far references.

I re-reviewed all differences found by the program I posted for the
Python\lib directory
date comparison and if you eliminate access times all differences for
created and last
write that were reported were a difference of 1 hour.

Based on a bunch of testing that I did and some references listed below I
believe
that you are CORRECT, Python 2.5.1 is reporting the correct times and
Windows is
reporting the times incorrectly.

The short explaination of this issue is that the timestamp shown when you do
a dir
on a file that is on an NTFS volume changes by an hour when DST starts and
also when
DST ends, even though the file has NOT been modified!!! Note that this only
happens
if you have the setting turned on to automatically adjust for DST (this is
the default
in Windows).

Even though Python 2.5.1 is correct this presents a NEW problem because it
differs
from what XP SP 2 (wrongly) reports. I am sure this will cause a lot of
confusion
for people as it already appears that others have stumbled on this
difference.

Here are some tests I did which show the problem that Windows has.

Setup Test Environment Virtual machine
XP SP2
Set TimeZone to GMT with automatically adjust for DST turned on
Set Date and Time to 01/02/2007 12:00:00 AM
Create file with notepad named joe.txt

This establishes our baseline:

joe.txt last written 01/02/2007 12:00 AM GMT

Check what Windows, Python 2.4.2 and Python 2.5.1 Report

dir /tc

01/02/2007 12:00 AM 14 joe.txt

dir /tw

01/02/2007 12:00 AM 14 joe.txt

Python 2.4.2

Creation Time: 01/02/2007 00:00:04
Last Write Time: 01/02/2007 00:00:08

Python 2.5.1

Creation Time: 01/02/2007 00:00:04
Last Write Time: 01/02/2007 00:00:08

Great so far everybody is in agreement

Change Environment
Set TimeZone to GMT-5:00 Eastern Time (US & Canada) (where I am located)
DST still set to automatically adjust
No changes to date and time at this point

With these changes joe.txt should now report 01/01/2007 07:00 PM since I
am 5 hours behind GMT

Check what Windows, Python 2.4.2 and Python 2.5.1 Report

dir /tc

01/01/2007 07:00 PM 14 joe.txt

dir /tw

01/01/2007 07:00 PM 14 joe.txt

Python 2.4.2

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:08

Python 2.5.1

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:08

Great so far everyone is still in agreement

Change Environment
Leave TimeZone set to GMT-5:00 Eastern Time (US & Canada) (where I am
located)
DST still set to automatically adjust
Change date to todays date 06/02/2007 and time 02:00:00 PM

This test simulates my machine moving in time forward from 01/1/2007 to
06/02/2007
with no changes being made on the computer. Imagine I turned it off on
01/02/2007
and went on a long vacation and just came home on 06/02/2007 and turned
it back on.

Check what Windows, Python 2.4.2 and Python 2.5.1 Report

dir /tc

01/01/2007 08:00 PM 14 joe.txt

dir /tw

01/01/2007 08:00 PM 14 joe.txt

Python 2.4.2

Creation Time: 01/01/2007 20:00:04
Last Write Time: 01/01/2007 20:00:08

Python 2.5.1

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:08


This is where the problem occurs.
This file was originally created 01/02/2007 12:00 AM GMT
which is the same locally as 01/01/2007 07:00 PM EST
but now everything EXCEPT Python 2.51
is reporting that the file changed on 01/01/2007 08:00 PM EST

Well that couldn't have happened since no changes were made (remember I
was on vacation :)).

Everything was fine until our current date time enters DST.
At that point the file now shows that it was last written an hour later.

The last write timestamp for the file should not change or be affected
because of the start/end of DST has occurred on my computer.

To the end user it appears the file was modifed when in fact it was not.

Python 2.5.1 is CORRECT
Windows is WRONG (dir /t, Explorer)
Python 2.4.2 is WRONG

One Possible Work Around for the problem:
Turn OFF the automatically adjust for DST setting
NOTE: Turning this off causes issues with time sync. See details at the
end.

With it turned off the timestamps are all correct
dir /tc

01/01/2007 07:00 PM 14 joe.txt

dir /tw

01/01/2007 07:00 PM 14 joe.txt


Python 2.4.2

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:08

Python 2.5.1

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:08

I was concered that since I had the automatically adjust DST setting turned
on when
I originally started with the time set to GMT 12:00 AM that it might have
affected
my results so I reran the tests.

Setup Test Environment Virtual machine
XP SP2
Set TimeZone to GMT WITHOUT automatically adjust for DST
Set Date and Time to 01/02/2007 12:00:00 AM
Create file with notepad named joe.txt

This establishes our baseline:

joe.txt last written 01/02/2007 12:00 AM

Check what Windows, Python 2.4.2 and Python 2.5.1 Report

dir /tc

01/02/2007 12:00 AM 16 joe.txt

dir /tw

01/02/2007 12:00 AM 16 joe.txt

Python 2.4.2

Creation Time: 01/02/2007 00:00:04
Last Write Time: 01/02/2007 00:00:09

Python 2.5.1

Creation Time: 01/02/2007 00:00:04
Last Write Time: 01/02/2007 00:00:09

Just like the first time everone is in agreement

Change Environment
Set TimeZone to GMT-5:00 Eastern Time (US & Canada) (where I am located)
DST still NOT set to automatically adjust
No changes to date and time at this point

With these changes joe.txt should now report 01/01/2007 07:00 PM since I
am 5 hours behind GMT

Check what Windows, Python 2.4.2 and Python 2.5.1 Report

dir /tc

01/01/2007 07:00 PM 16 joe.txt

dir /tw

01/01/2007 07:00 PM 16 joe.txt

Python 2.4.2

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:09

Python 2.5.1

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:09

Just like the first time everyone still in agreement

Change Environment
Leave TimeZone set to GMT-5:00 Eastern Time (US & Canada) (where I am
located)
DST still NOT set to automatically adjust
Change date to todays date 06/02/2007 and time 02:00:00 PM

Check what Windows, Python 2.4.2 and Python 2.5.1 Report

dir /tc

01/01/2007 07:00 PM 16 joe.txt

dir /tw

01/01/2007 07:00 PM 16 joe.txt

Python 2.4.2

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:09

Python 2.5.1

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:09

Everyone still in agreement.

This confirms that the bug is in Windows when the automatically adjust
for DST
setting is turned on. Windows should NOT be using the DST setting to
adjust
the file times. It makes it look like the files were modified when in
fact
they have not.

If you turn it on after the last test then you get the following results
which
again prove that Python 2.5.1 is correct and that Windows and Python
2.4.2 are
wrong.

dir /tc

01/01/2007 08:00 PM 16 joe.txt

dir /tw

01/01/2007 08:00 PM 16 joe.txt

Python 2.4.2

Creation Time: 01/01/2007 20:00:04
Last Write Time: 01/01/2007 20:00:09

Python 2.5.1

Creation Time: 01/01/2007 19:00:04
Last Write Time: 01/01/2007 19:00:09

The real issue now is that even though Python 2.5.1 is correct it is
confusing to
someone that is trying to compare their results to what Windows reports.

If you turn of automatically adjust DST and run the program I provided to
compare
the dates between windows and python in the other email message against the
Python\Lib directory then all create dates and all write dates between
Python and
Windows compare. Access dates do not match but you have already explained
why that
can occur (caching).

As shown above, one way to fix this is to turn OFF the automatically adjust
for
DST setting in Windows.

The problem with turning it OFF is that if you have automatic time sync
turned ON
when the time sync occurs and automatically adjust for DST is turned OFF and
it is DST
your time will be an hour off after the sync :-(.

Also any computers that are syncing their time with this computer that have
automatically adjust for DST turned ON will have their sync'd times one hour
off since this computer had automatically adjust for DST turned OFF.

The following link goes into even greater detail as to the source of the
problem
in Windows:

http://search.cpan.org/~shay/Win32-UTCFileTime-1.45/lib/Win32/UTCFileTime.pm

Based on the above article it does not seem like Microsoft will be fixing
this
which leaves us stuck because Python and Windows are not reporting the same
values when DST starts/ends and you have automatically adjust for DST turned
ON.

Having this difference between Python and Windows makes it difficult to
write
code that depends on those values being in sync.

It makes me wonder if there should be an option in localtime to "fudge" the
dates
so that they match what Windows reports....

Thanks to all that assisted in investigating this.
 
?

=?ISO-8859-15?Q?=22Martin_v=2E_L=F6wis=22?=

The short explaination of this issue is that the timestamp shown when
you do a dir on a file that is on an NTFS volume changes by an hour
when DST starts and also when DST ends, even though the file has NOT
been modified!!! Note that this only happens if you have the setting
turned on to automatically adjust for DST (this is the default in
Windows).

You are misinterpreting what you are seeing. Windows is not claiming
that the modification time changes when DST starts. Instead, it is
claiming that the *same* time now has a *different* textual
representation, because the computer now has moved to a different
time zone.

When you explicitly change the time zone of your computer, you will
notice that all file time stamps immediately change also.
Even though Python 2.5.1 is correct this presents a NEW problem
because it differs from what XP SP 2 (wrongly) reports. I am sure
this will cause a lot of confusion for people as it already appears
that others have stumbled on this difference.

However, please understand that the problem is *not* caused by the
results returned from os.stat. Instead, the difference comes from
your choice of calling localtime() to break down the timestamp
to day, hour, and minute. If you write a different function
windows_localtime, that behaves the same way that the Windows
rendering behaves, you will get the same results.
To the end user it appears the file was modifed when in fact it was
not.

That's because the user is misinterpreting the data that Windows
reports. Windows isn't saying the file changed, Windows says that
the timezone changed.

To understand this, you have to truly grasp the notion of absolute
time. June 2, 2007, 9:40 is *not* a point in time. Instead, you
have to provide a timezone also to make it point in time. So Windows
is incorrect not giving the time zone; otherwise, it is correct.
This file was originally created 01/02/2007 12:00 AM GMT
which is the same locally as 01/01/2007 07:00 PM EST
but now everything EXCEPT Python 2.51
is reporting that the file changed on 01/01/2007 08:00 PM EST

Not true. Everything else is reporting that the time stamp is

01/01/2007 08:00 PM EDT

(where EDT is the Eastern Daylight Time).
Having this difference between Python and Windows makes it difficult
to write code that depends on those values being in sync.

No. Just write a windows_localtime function, and be done.

Regards,
Martin
 
J

Joe Salmeri

"Martin v. Löwis" said:
You are misinterpreting what you are seeing. Windows is not claiming
that the modification time changes when DST starts. Instead, it is
claiming that the *same* time now has a *different* textual
representation, because the computer now has moved to a different
time zone.

When you explicitly change the time zone of your computer, you will
notice that all file time stamps immediately change also.

It appears that you may have missed part of my tests. Sorry it was such a
long reply but I was trying to provide a lot of detail so that others had a
clear understanding of what was going on.

I understand that the actual UTC time value for the file has *not* changed.

That local textual representation of the modification timestamp is what
people and programs look at and work with and is what is displayed by the
dir command and what Explorer displays.

Changing the timezone will defintely change the "textual representation" of
all timestamps just as you say (even though the actual UTC value has *not*
changed), however, when DST starts/ends the "textual representation" of the
timestamps on some files WILL ALSO CHANGE when the automatically adjust for
DST setting is turned on.

That is *not* my opinion or interpretation, it is clearly documented by
Microsoft and is also documented in the long article that I provided the
link for in my reply yesterday. It was also demonstrated in the second test
I provided yesterday and is also demonstrated in the article I provided the
link to.

In the following comments I am referring to the textual representation of
the timestamp that the user is working with (I understand that the interal
UTC timestamp for the file has *not* changed).

The issue occurs when the timestamp for the file is in a period when DST was
not in effect and DST is in effect for the current time OR when the
timestamp for the file is in a period when DST was in effect and DST is not
in effect for the current time.

While it is true that I did change the timezone in the first part of the
test (to establish the baseline), in the second part of the tests where the
difference you are referring to occured, the timezone was *not* changed, the
only thng that occured was that DST started.

In that test the file had a timestamp of 01/01/2007 07:00 PM as shown by the
dir command results.

When the date progressed to a point after DST had started Windows now
reports the timestamp on that *unmodified* file now is 01/01/2007 08:00 PM.

I did not change the timezone, the only thing that occurred was DST started.

The internal UTC timestamp did NOT change, the issue is in Windows textual
representation of that UTC timestamp to my local timezone and DST values,
Windows now reports that the modification timestamp on the file as 1 hour
later (again the actual UTC timestamp did *not* change).

To the end user the file "appears" to have been modified an hour later than
it was the day before even though it was not changed.

Over the years this issue has caused all sorts of problems for backup
programs and CVS (greatly detailed in the article I provided the link for).
However, please understand that the problem is *not* caused by the
results returned from os.stat. Instead, the difference comes from
your choice of calling localtime() to break down the timestamp
to day, hour, and minute. If you write a different function
windows_localtime, that behaves the same way that the Windows
rendering behaves, you will get the same results.


That's because the user is misinterpreting the data that Windows
reports. Windows isn't saying the file changed, Windows says that
the timezone changed.

You mixed up my tests, in that case as shown above the timezone did *not*
change, the only thing that changed was that DST started and the file was
created during a time when DST was not in effect.
No. Just write a windows_localtime function, and be done.

For those that are interested here is a function that you can use in place
of time.localtime that will return values that match what Windows
(incorrectly) reports.

There may be a better way to do this but so far I this code seems to work.

I ran a test against the Python\lib directory using the check_dates.py
program previously posted with it modified to use the localtime_windows
function in place of the time.localtime function calls and all create and
write timestamps returned now match what Windows (incorrectly) reports.

import datetime
import time

def localtime_windows(seconds):
value = time.localtime(seconds)
now = time.localtime()

# Compare DST in value versus DST now

if value[8] == 0 and now[8] == 1:
# When original date is NOT in DST but now date is in DST add 1 hour
new_value = datetime.datetime(value.tm_year, value.tm_mon,
value.tm_mday, value.tm_hour, value.tm_min, value.tm_sec) +
datetime.timedelta(hours=1)
value = new_value.timetuple()
elif value[8] == 1 and now[8] == 0:
# When original date is in DST and now date is NOT in DST subtract 1
hour
new_value = datetime.datetime(value.tm_year, value.tm_mon,
value.tm_mday, value.tm_hour, value.tm_min, value.tm_sec) +
datetime.timedelta(hours=-1)
value = new_value.timetuple()

return value
 
T

Terry Reedy

| | >> The short explaination of this issue is that the timestamp shown when
| >> you do a dir on a file that is on an NTFS volume changes by an hour
| >> when DST starts and also when DST ends, even though the file has NOT
| >> been modified!!! Note that this only happens if you have the setting
| >> turned on to automatically adjust for DST (this is the default in
| >> Windows).
| >
| > You are misinterpreting what you are seeing. Windows is not claiming
| > that the modification time changes when DST starts. Instead, it is
| > claiming that the *same* time now has a *different* textual
| > representation, because the computer now has moved to a different
| > time zone.

Joe, read the last sentence again. Most of your reply shows that you have
missed this basic point.

A 'time zone', as far as the math (and Windows) is concerned, *IS* an
offset from GMT. The shift from 'standard' to 'daylight' time is a
one-hour change in the offset. That has the same effect as moving to the
standard time zone one hour to the east. So Eastern Daylight Time is the
same as Atlantic Standard Time (or whatever Canadians call the next zone
for their maritime provinces). Similarly, 'Central Daylight Time' is an
alias for 'Eastern Standard Time'. CDT and EST both translate to -5 (I
believe) in Windows timezone lookup dictionary. Because there are multiple
names and abbreviations for most or all timezones, Windows has to
separately keep track of which one the user expects to see.

[In my opinion, the Congressional mandate that we pretend to live somewhere
to the east for over half the year is as arrogant and stupid as would be a
mandate that we use 'adjusted Fahrenheit' (F - 10 degrees) during the
summer so that temperatures 'seemed' lower. ;-]

| > When you explicitly change the time zone of your computer, you will
| > notice that all file time stamps immediately change also.

What Martin meant, of course, is the presented text representation thereof.

| It appears that you may have missed part of my tests. Sorry it was such
a
| long reply but I was trying to provide a lot of detail so that others had
a
| clear understanding of what was going on.
|
| I understand that the actual UTC time value for the file has *not*
changed.
|
| That local textual representation of the modification timestamp is what
| people and programs look at and work with and is what is displayed by the
| dir command and what Explorer displays.

And without a timezone attached, that 'local representation' is as
ambiguous as any measurement without units. Is 45 hot or cool?

| Changing the timezone will defintely change the "textual representation"
of
| all timestamps just as you say (even though the actual UTC value has
*not*
| changed), however, when DST starts/ends the "textual representation" of
the
| timestamps on some files WILL ALSO CHANGE when the automatically adjust
for
| DST setting is turned on.

To repeat, turning DST on *IS* a timezone change. So you are talking about
the *same* thing.

| In the following comments I am referring to the textual representation of
| the timestamp that the user is working with (I understand that the
interal
| UTC timestamp for the file has *not* changed).
|
| The issue occurs when the timestamp for the file is in a period when DST
was
| not in effect and DST is in effect for the current time OR when the
| timestamp for the file is in a period when DST was in effect and DST is
not
| in effect for the current time.

Because the timezones change. Geographically, UTC+X is the area where the
relevant authorities mandate that clocks be set to offset X from UTC. When
the clocks jump, those areas jump! In the US, at least, the UTC-6 area,
for instance, jumps from where it was to what was previously the UTC-7
area. This spring, when there were different jump dates around the world,
the overall configuration of zones (which areas had the same time) changed.
Yes, a mess

| While it is true that I did change the timezone in the first part of the
| test (to establish the baseline), in the second part of the tests where
the
| difference you are referring to occured, the timezone was *not* changed,
the
| only thng that occured was that DST started.

Which *is* a timezone change.

| In that test the file had a timestamp of 01/01/2007 07:00 PM as shown by
the
| dir command results.

As Martin said, that is not a timestamp. It is an information-stripped
representation thereof.

| When the date progressed to a point after DST had started Windows now
| reports the timestamp on that *unmodified* file now is 01/01/2007 08:00
PM.

Because Windows changed the timezone offset by one hour. Again, not a
timestamp but an alternate info-deleted representation thereof.

| I did not change the timezone, the only thing that occurred was DST
started.

Which *is* a timezone change.

| The internal UTC timestamp did NOT change, the issue is in Windows
textual
| representation of that UTC timestamp to my local timezone and DST values,
| Windows now reports that the modification timestamp on the file as 1 hour
| later (again the actual UTC timestamp did *not* change).

It is Windows' fault that it deletes the time scale indication. If there
were a 'Congressional Stupidty' temperature scale (F-10) and Windows
silently changed the scale for reporting historical temperature stamps
(perhaps of max CPU temp each your, auto recorded on machines with such
measurements), it would 'report' that such had changed, even thought they
had not.

| > That's because the user is misinterpreting the data that Windows
| > reports. Windows isn't saying the file changed, Windows says that
| > the timezone changed.
|
| You mixed up my tests, in that case as shown above the timezone did *not*
| change, the only thing that changed was that DST started and the file was
| created during a time when DST was not in effect.

Need I repeat ;-?

Terry Jan Reedy
 
?

=?ISO-8859-15?Q?=22Martin_v=2E_L=F6wis=22?=

It appears that you may have missed part of my tests. Sorry it was such a
long reply but I was trying to provide a lot of detail so that others had a
clear understanding of what was going on.

Please understand that it is *extremely* tedious to follow your
messages. It would have been much better if they had been short and
to the point.
Changing the timezone will defintely change the "textual representation" of
all timestamps just as you say (even though the actual UTC value has *not*
changed), however, when DST starts/ends the "textual representation" of the
timestamps on some files WILL ALSO CHANGE when the automatically adjust for
DST setting is turned on.

Right, and that's because switching to DST means that YOU MOVE TO A
DIFFERENT TIME ZONE.

EST != EDT.
While it is true that I did change the timezone in the first part of the
test (to establish the baseline), in the second part of the tests where the
difference you are referring to occured, the timezone was *not* changed, the
only thng that occured was that DST started.

And that meant that the time zone *did* change.
When the date progressed to a point after DST had started Windows now
reports the timestamp on that *unmodified* file now is 01/01/2007 08:00 PM.

I did not change the timezone, the only thing that occurred was DST started.

So you did change the timezone.
Over the years this issue has caused all sorts of problems for backup
programs and CVS (greatly detailed in the article I provided the link for).

That is very hard to believe. CVS and backup programs use the UTC time
stamp, and completely ignore the timezone. So when you agree that the
UTC time stamp did not change, CVS and the backup programs will work
just fine.

There was a long-standing problem with changing time-stamps ON FAT.
On a FAT file system, the actual UTC time stamps change when the
timezone changes (including the change to and from DST). *That*
was a big problem for backup programs and CVS, and is now fixed
with NTFS.
You mixed up my tests, in that case as shown above the timezone did *not*
change, the only thing that changed was that DST started and the file was
created during a time when DST was not in effect.

Right, so the timezone did change.

Regards,
Martin
 
J

Joe Salmeri

| > You are misinterpreting what you are seeing. Windows is not claiming
| > that the modification time changes when DST starts. Instead, it is
| > claiming that the *same* time now has a *different* textual
| > representation, because the computer now has moved to a different
| > time zone.

Joe, read the last sentence again. Most of your reply shows that you have
missed this basic point.

My reply specifically indicated that I was referring to the textual
presentation that Windows is showing.

I understand that a DST change and a timezone change produce the same
results on the offset from GMT but I don't consider them the same thing.

As I attempted to describe the issue with the timestamps changing when DST
starts/ends is not my *opinion* it is behavior that Microsoft (and others)
have documented (and I agree with).

Consider this situation from the end user perspective.

I create a file on 01/02/2007 at 07:00 PM

Windows shows the last write time as 01/02/2007 07:00 PM

I never make any changes to the file.

Fast forward in time and it is now 06/03/2007.

When I do a directory on the file Windows now shows the last write time as
01/02/2007 08:00 PM.

I understand WHY this is happening, but like many others do not agree with
the behavior.

The reason Windows does this is because although my timeszone did not change
(as far as I am concerned) DST has started (a timezone change as far as you
are concerned) so it now shows the time as 1 hour more than it used to
because the GMT offset has changed.

From the end user perspective it appears this file has now been modified an
hour later than it showed it was modifed before DST started.

Now let's look at another common user activity.

I watch this TV show on 01/02/2007 at 07:00 PM. It comes on every day at
07:00 PM

Fast forward in time it is now 06/03/2007.

When I watch that same show it comes on at 07:00 PM (even though DST has
started) and if I look the TV listings it still shows that the older show on
01/02/2007 came on at 07:00 PM. It did not show the older show now on as
08:00 PM which is what Windows is doing with the timestamp.

When you compare those two situations it does not make sense that Windows
shows a different timestamp.

I would recommend reading the links in the articles where Microsoft
documents the situation and developers for the CVS project discuss having to
deal with the problems.

Here's a clip from the article:

This behaviour is responsible for a flood of questions to the
various support lists for CVS, following the first Sunday in April and the
last Sunday in October, with
scores of people complaining that CVS now reports erroneously that
their files have been modified. This is commonly known as the "red file bug"
because the
WinCVS shell uses red icons to indicate modified files.
 
J

Joe Salmeri

Please understand that it is *extremely* tedious to follow your
messages. It would have been much better if they had been short and
to the point.

Sometimes it seems that it is impossible to please people.

When messages are short then people complain that they did not get
sufficient details, or examples.

I provide details and tests so that anyone could easily attempt to duplicate
exactly what I said was happening and you complain that they are too long.

Baring any typo mistakes on my part, performing the tests should produce
the exact results that I stated were happening.
That is very hard to believe. CVS and backup programs use the UTC time
stamp, and completely ignore the timezone. So when you agree that the
UTC time stamp did not change, CVS and the backup programs will work
just fine.

The CVS problems were mentioned in the article I linked to and were
discussed by people involved in CVS development. Whether you choose to
believe all those people or not is up to you.

See my reply to Terry, from the end user perspective, the Windows behavior
does not make sense.

Short enough?
 
J

Joe Salmeri

"Martin v. Löwis" said:
Please understand that it is *extremely* tedious to follow your
messages. It would have been much better if they had been short and
to the point.


Right, and that's because switching to DST means that YOU MOVE TO A
DIFFERENT TIME ZONE.

EST != EDT.


And that meant that the time zone *did* change.


So you did change the timezone.


That is very hard to believe. CVS and backup programs use the UTC time
stamp, and completely ignore the timezone. So when you agree that the
UTC time stamp did not change, CVS and the backup programs will work
just fine.

There was a long-standing problem with changing time-stamps ON FAT.
On a FAT file system, the actual UTC time stamps change when the
timezone changes (including the change to and from DST). *That*
was a big problem for backup programs and CVS, and is now fixed
with NTFS.


Right, so the timezone did change.

Regards,
Martin
 
J

Joe Salmeri

There is a conflict with the answers that you and Terry have given.

The original issue I raised was that I Python 2.5.1 and Windows did not have
the same textual represenation for a localize date.

You have stood true to the statements that Python 2.5.1 is correct and that
previous versions were wrong.

I agree with you that Python 2.5.1 is correct which means that Windows is
showing the incorrect dates.

Since that point in time you and Terry have disagreed with my statements
regarding timezones and DST.

All dates in my below comments are the textual representation of those dates
from Windows or from Python 2.5.1

For the test file created at 01/02/2007 07:00 PM.

From that date up until just before DST starts both Windows AND Python 2.5.1
will report that date as 01/02/2007 07:00 PM.

Once DST starts Python 2.5.1 will still report that date as 01/02/2007 07:00
PM, however Windows will now report that
date as 01/02/2007 at 08:00 PM.

I agree and believe that Python 2.5.1 is reporting the correct textual
representation of that timestamp, however, using
*your* logic that a DST change *is a timezone change* that would mean that
Python 2.5.1 is wrong and should be reporting the
date 1 hour later just as Windows is reporting.

You cannot have it both ways.

If a DST change is the same as a timezone change then Python 2.5.1 should be
reporting the dates that Windows reports.
If a DST change is NOT the same as a timezone change then Python 2.5.1
should be reporting the dates that it currently is.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,575
Members
45,053
Latest member
billing-software

Latest Threads

Top