summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/file/filescan.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove the Mac modulesBenjamin Peterson2008-05-121-198/+0
|
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line Removed duplicate Py_CHARMASK define. It's already defined in Python.h. ........ r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. Remove automatic handling of datetime.date and datetime.time. This breaks backward compatibility, but python-dev discussion was strongly against this automatic conversion; see the bug for a link. ........ r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line #835521: Add index entries for various pickle-protocol methods and attributes ........ r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines #1433694: minidom's .normalize() failed to set .nextSibling for last element. Fix by Malte Helmert ........ r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line Patch #2167 from calvin: Remove unused imports ........ r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line Patch #1957: syslogmodule: Release GIL when calling syslog(3) ........ r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines Issue #2051 and patch from Alexander Belopolsky: Permission for pyc and pyo files are inherited from the py file. ........
* Run 2to3's print fixer over some places that had been missed.Collin Winter2007-08-301-3/+3
|
* Kill execfile(), use exec() insteadNeal Norwitz2007-08-121-1/+1
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-183/+183
|
* Ported to Universal Headers 3.4.2. Qd and Qt remain to be done.Jack Jansen2003-12-031-0/+2
| | | | Completely untested.
* Getting rid of code conditional on TARGET_API_MAC_*.Jack Jansen2003-11-191-8/+0
|
* The FSAliasFile routines also have an in/out parameter.Jack Jansen2003-02-021-0/+3
|
* Implemented FSCatalogInfo.Jack Jansen2003-01-121-10/+10
|
* Started on implementing support for FSCatalogInfo. Doesn't work yet, don'tJack Jansen2003-01-091-2/+11
| | | | try it.
* - Added rawdata initializersJack Jansen2002-12-181-0/+8
| | | | | - Added support for optional FSSpecs and FSRefs to the Alias routines. NewAlias and friends are still functions, though, not methods.
* Include Finder.h too in the list of header files to parse: the finderJack Jansen2002-12-171-1/+2
| | | | constants have tradiationally been in MACFS.py.
* Combined alias and file into a single module. This is the only reasonableJack Jansen2002-12-151-6/+34
| | | | | | | way to get various alias creation routines as methods of FSSpec or FSRef objects (which is the logical thing, from a Python POV). Also started on the code that will contain all the macfs functionality, so macfs can becode a Python module, to be used mainly for backward compatibility.
* Tweaks to make this module OS9-compatible.Jack Jansen2002-12-131-4/+8
|
* Got angry and added support for pretty much the whole file and folderJack Jansen2002-11-221-0/+152
manager. This should allow us the get rid of most of the FSSpecs, only navigation services remains to be done.