summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libposixpath.tex
Commit message (Collapse)AuthorAgeFilesLines
* Use a simpler \note instead of a "See also" section to refer to theFred Drake2003-04-251-5/+2
| | | | os.walk() generator.
* Fix markupNeal Norwitz2003-04-251-1/+1
|
* New generator os.walk() does a bit more than os.path.walk() does, andTim Peters2003-04-251-0/+6
| | | | | seems much easier to use. Code, docs, NEWS, and additions to test_os.py (testing this sucker is a bitch!).
* supports_unicode_filenames was not in the right location.Fred Drake2003-02-041-7/+8
|
* Use the name (path) specified in the parameter listNeal Norwitz2002-12-311-4/+4
|
* Patch #658927: Add getctime to os.path.Martin v. Löwis2002-12-311-2/+12
| | | | Document that getatime and getmtime may return floats.
* Patch #651006: Better explain what component might be empty.Martin v. Löwis2002-12-111-1/+1
|
* Add os.path.supports_unicode_filenames for all platforms,Mark Hammond2002-10-081-0/+7
| | | | | | 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.
* Minor revision to the "\\" patch, including updating the docs a little toFred Drake2002-09-121-5/+6
| | | | | | | | accomodate the fact that they are more general now that they are for the os.path module and not just posixpath. This and the previous patch should be combined and applied to the 2.2-maint branch.
* add note about os.path.join and drive letters on Windows.Skip Montanaro2002-09-121-1/+4
|
* Change the markup a bit more; the parameter was not marked as \var in theFred Drake2002-08-071-4/+8
| | | | sample code, and the note was marked as a logical thing.
* Fix markup errors.Steve Holden2002-08-071-3/+3
|
* Add comment about os.path.walk()'s behavior with symbolic links.Steve Holden2002-08-061-0/+5
|
* Update doc to reflect Tim's changes to bool.Neal Norwitz2002-04-051-10/+10
|
* Clean up some markup cruft. A number of the macros that take noFred Drake2001-11-281-5/+5
| | | | | | | | parameters (like \UNIX) are commonly entered using an empty group to separate the markup from a following inter-word space; this is not needed when the next character is punctuation, or the markup is the last thing in the enclosing group. These cases were marked inconsistently; the empty group is now *only* used when needed.
* Use the \note and \warning macros where appropriate.Fred Drake2001-10-201-2/+2
|
* Added note about non-support of UNC paths on Windows.Fred Drake2001-09-281-0/+4
| | | | This fixes SF bug #465447.
* SF patch #461781 by Chris Lawrence: os.path.realpath - Resolve symlinks:Guido van Rossum2001-09-171-0/+7
| | | | | | | | | | | | | | Once upon a time, I put together a little function that tries to find the canonical filename for a given pathname on POSIX. I've finally gotten around to turning it into a proper patch with documentation. On non-POSIX, I made it an alias for 'abspath', as that's the behavior on POSIX when no symlinks are encountered in the path. Example: >>> os.path.realpath('/usr/bin/X11/X') '/usr/X11R6/bin/X'
* Add a version annotation for splitdrive(); old, but as long as I managedFred Drake2001-05-251-0/+1
| | | | to end up with the information, it is better recorded than lost.
* Explained that os.path.basename() may return something different from theFred Drake2000-10-261-1/+5
| | | | | | basename program, as suggested by Gregor Hoffleit <gregor@hoffleit.de>. This closes bug #119485.
* update commonprefix doc to make sure user is aware it worksSkip Montanaro2000-08-231-2/+4
| | | | | character-by-character and that that behavior may result in it returning prefixes that are not valid paths
* Merged changes from the 1.5.2p2 release.Fred Drake2000-04-031-2/+2
| | | | (Very rough.)
* Fixed typo in explanation of abspath(); noticed by Paul PrescodFred Drake1999-10-181-1/+1
| | | | <paul@prescod.net>.
* Note that abspath() was added in 1.5.2.Fred Drake1999-03-171-0/+1
|
* Fix an amazing number of typos & malformed sentences reported by DetlefFred Drake1999-02-191-8/+8
| | | | Lannert <lannert@uni-duesseldorf.de>.
* Added availability notes for samefile(), sameopenfile(), samestat()Fred Drake1999-02-151-0/+3
| | | | since these are not available on Windows.
* Document sameopenfile(), samestat().Fred Drake1999-02-031-3/+17
|
* Document splitdrive().Fred Drake1999-02-031-2/+10
| | | | | | For all split*(), these split path *into* pairs, not split path *in* pairs. "Into" can be used for transformations, "in" is for containment.
* Change this to be os.path.Fred Drake1999-02-021-66/+67
| | | | | Use consistent parameter naming with the os documentation (paths always named "path" or "path1", "path2"...).
* Make the text generic, and call it os.path instead of posixpath.Fred Drake1999-02-011-27/+24
|
* Document abspath() (implementation is forthcoming).Guido van Rossum1999-01-291-0/+6
|
* New section header style.Fred Drake1998-08-101-1/+2
| | | | Fix up a few synopses.
* Markup nit.Fred Drake1998-08-061-5/+4
|
* Mark the new & changed items.Fred Drake1998-07-271-0/+3
|
* Document getsize(), getmtime(), getatime().Guido van Rossum1998-07-241-0/+19
|
* Move files around to get the names to match the module names except forFred Drake1998-07-241-0/+147
case. Two modules (SocketServer, BaseHTTPServer) still don't match; those names are just too long!