summaryrefslogtreecommitdiffstats
path: root/Lib/os2emxpath.py
Commit message (Collapse)AuthorAgeFilesLines
* - Move functions common to all path modules into genericpath.py and have theJack Diederich2006-08-261-272/+4
| | | | | OS speicifc path modules import them. - Have os2emxpath import common functions fron ntpath instead of using copies
* Bug #1266283: lexists() is not exported from os.pathGeorg Brandl2005-08-221-4/+4
|
* patch [ 1105730 ] Faster commonprefix in macpath, ntpath, etc.Georg Brandl2005-08-031-8/+7
|
* Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists ↵Johannes Gijsbers2004-08-301-0/+2
| | | | in glob.glob.
* Feature request #935915: Add os.path.devnull.Martin v. Löwis2004-06-081-1/+2
|
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
| | | | (From SF patch #810751)
* Migrate definitions of several platform-dependent path-related variablesSkip Montanaro2003-02-141-0/+10
| | | | into the relevant path modules. See patch #686397.
* Fix SF #659228, 'realpath' function missing from os.pathNeal Norwitz2003-01-031-1/+4
| | | | | | | Also added realpath = abspath for os2emx, similar to windows/mac which also don't really implement realpath. Backport candidate, I think?
* Patch #658927: Add getctime to os.path.Martin v. Löwis2002-12-311-1/+4
| | | | Document that getatime and getmtime may return floats.
* Add os.path.supports_unicode_filenames for all platforms,Mark Hammond2002-10-081-1/+4
| | | | | | sys.getwindowsversion() on Windows (new enahanced Tim-proof <wink> version), and fix test_pep277.py in a few minor ways. Including doc and NEWS entries.
* Replaced obsolete stat module constants with equivalent attributesRaymond Hettinger2002-06-011-8/+5
|
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-4/+4
|
* Whitespace normalization.Tim Peters2002-04-161-1/+1
|
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-3/+3
|
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-2/+2
|
* OS/2 EMX port Library and regression test changes:Andrew MacIntyre2002-02-241-0/+405
Lib/ os.py os2emxpath.py // added - OS/2 EMX specific path manipulation routines popen2.py site.py Lib/test/ test_fcntl.py test_longexp.py