An error occurred fetching the project authors.
- 30 Aug, 2004 1 commit
-
-
Johannes Gijsbers authored
-
- 10 Jul, 2004 1 commit
-
-
Brett Cannon authored
path. Also clarifies UNC handling and adds appropriate tests. Applies patch #988607 to fix bug #980327. Thanks Paul Moore.
-
- 08 Jun, 2004 1 commit
-
-
Martin v. Löwis authored
-
- 20 Oct, 2003 1 commit
-
-
Walter Dörwald authored
(From SF patch #810751)
-
- 28 Mar, 2003 1 commit
-
-
Skip Montanaro authored
backport candidate
-
- 17 Feb, 2003 1 commit
-
-
Andrew MacIntyre authored
- 'os2' references in ntpath.py relate to the VACPP port, not the EMX port; - the VACPP port uses the same defpath as all other ntpath.py supported platforms except 'ce'.
-
- 14 Feb, 2003 1 commit
-
-
Skip Montanaro authored
into the relevant path modules. See patch #686397.
-
- 03 Jan, 2003 1 commit
-
-
Neal Norwitz authored
Also added realpath = abspath for os2emx, similar to windows/mac which also don't really implement realpath. Backport candidate, I think?
-
- 31 Dec, 2002 1 commit
-
-
Martin v. Löwis authored
Document that getatime and getmtime may return floats.
-
- 12 Dec, 2002 1 commit
-
-
Martin v. Löwis authored
-
- 09 Oct, 2002 1 commit
-
-
Tim Peters authored
imported on systems other than Windows, and in particular is imported by test___all__; the compile farm reported that all Linux tests failed due to this; isn't anyone in PythonDevLand running CVS on Linux?!).
-
- 08 Oct, 2002 1 commit
-
-
Mark Hammond authored
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.
-
- 01 Jun, 2002 2 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 07 Apr, 2002 1 commit
-
-
Guido van Rossum authored
-
- 04 Apr, 2002 1 commit
-
-
Tim Peters authored
-
- 17 Jan, 2002 1 commit
-
-
Mark Hammond authored
-
- 05 Nov, 2001 1 commit
-
-
Tim Peters authored
ntpath.join('a', '') was producing 'a' instead of 'a\\' as in 2.1. Impossible to guess what was ever *intended*, but since split('a\\') produces ('a', ''), I think it's best if join('a', '') gives 'a\\' back.
-
- 10 Oct, 2001 1 commit
-
-
Tim Peters authored
We have 5 implementations of walk(), and 5 different docstrings. Combined 'em. Let's see how long it takes before they're all different again!
-
- 17 Sep, 2001 1 commit
-
-
Guido van Rossum authored
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'
-
- 30 Aug, 2001 1 commit
-
-
Tim Peters authored
I actually rewrote normpath quite a bit: it had no test cases, and as soon as I starting writing some I found several cases that didn't make sense.
-
- 27 Jul, 2001 1 commit
-
-
Tim Peters authored
special cases. test_pkg works again on Windows.
-
- 26 Jul, 2001 1 commit
-
-
Tim Peters authored
d:/whatever instead of /whatever. While I'm afraid changing isabs() to be *consistent* with this would break lots of code, it makes best sense for join() to do it this way. Thanks to Alex Martelli for pushing back on this one!
-
- 20 Jul, 2001 1 commit
-
-
Fred Drake authored
-
- 19 Jul, 2001 1 commit
-
-
Tim Peters authored
This is a Windows-specific glitch that's really due to that, e.g., ntpath.join("c:", "/abc") returned "/abc" instead of "c:/abc". Made join smarter. Bugfix candidate.
-
- 15 May, 2001 1 commit
-
-
Fred Drake authored
-
- 13 May, 2001 1 commit
-
-
Mark Hammond authored
Add support for Windows using "mbcs" as the default Unicode encoding when dealing with the file system. As discussed on python-dev and in patch 410465.
-
- 06 Feb, 2001 1 commit
-
-
Skip Montanaro authored
-
- 15 Jan, 2001 1 commit
-
-
Tim Peters authored
-
- 12 Dec, 2000 1 commit
-
-
Fred Drake authored
Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects.
-
- 28 Sep, 2000 1 commit
-
-
Fred Drake authored
Never assume that os.sep is for the module-specific platform; use the right separator character directly. Fix some minor style consistency nits.
-
- 19 Sep, 2000 1 commit
-
-
Tim Peters authored
"a:b", not "a:/b". Similar change was made to posixmodule.c earlier.
-
- 22 Aug, 2000 1 commit
-
-
Skip Montanaro authored
-
- 14 Aug, 2000 1 commit
-
-
Mark Hammond authored
Fix for Bug #110673: os.abspatth() now always returns os.getcwd() on Windows, if an empty path is specified. It previously did not if an empty path was delegated to win32api.GetFullPathName())
-
- 17 Jul, 2000 1 commit
-
-
Skip Montanaro authored
* case insensitive comparison
-
- 13 Jul, 2000 1 commit
-
-
Skip Montanaro authored
-
- 12 Jul, 2000 1 commit
-
-
Skip Montanaro authored
characters.
-
- 01 Jul, 2000 1 commit
-
-
Fred Drake authored
getatime() returned the mtime instead of the atime. Similar to an old bug in posixpath.py.
-
- 17 Feb, 2000 1 commit
-
-
Fred Drake authored
-
- 02 Feb, 2000 1 commit
-
-
Guido van Rossum authored
imported; in that case, abspath is replaced by a fallback version.
-