- 22 Agu, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 03 Agu, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 30 Agu, 2004 1 kayıt (commit)
-
-
Johannes Gijsbers yazdı
-
- 08 Haz, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 20 Eki, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
(From SF patch #810751)
-
- 14 Şub, 2003 1 kayıt (commit)
-
-
Skip Montanaro yazdı
into the relevant path modules. See patch #686397.
-
- 03 Ock, 2003 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Also added realpath = abspath for os2emx, similar to windows/mac which also don't really implement realpath. Backport candidate, I think?
-
- 31 Ara, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Document that getatime and getmtime may return floats.
-
- 08 Eki, 2002 1 kayıt (commit)
-
-
Mark Hammond yazdı
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 Haz, 2002 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 16 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 07 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 24 Şub, 2002 1 kayıt (commit)
-
-
Andrew MacIntyre yazdı
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
-
- 17 Ock, 2002 1 kayıt (commit)
-
-
Mark Hammond yazdı
-
- 05 Kas, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
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 Eki, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
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 Eyl, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
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 Agu, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
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 Tem, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
special cases. test_pkg works again on Windows.
-
- 26 Tem, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
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 Tem, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 19 Tem, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
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 kayıt (commit)
-
-
Fred Drake yazdı
-
- 13 May, 2001 1 kayıt (commit)
-
-
Mark Hammond yazdı
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 Şub, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 15 Ock, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 12 Ara, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects.
-
- 28 Eyl, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
Never assume that os.sep is for the module-specific platform; use the right separator character directly. Fix some minor style consistency nits.
-
- 19 Eyl, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
"a:b", not "a:/b". Similar change was made to posixmodule.c earlier.
-
- 22 Agu, 2000 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 14 Agu, 2000 1 kayıt (commit)
-
-
Mark Hammond yazdı
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 Tem, 2000 1 kayıt (commit)
-
-
Skip Montanaro yazdı
* case insensitive comparison
-
- 13 Tem, 2000 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 12 Tem, 2000 1 kayıt (commit)
-
-
Skip Montanaro yazdı
characters.
-
- 01 Tem, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
getatime() returned the mtime instead of the atime. Similar to an old bug in posixpath.py.
-
- 17 Şub, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 02 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
imported; in that case, abspath is replaced by a fallback version.
-
- 30 Kas, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(and even when it fails). This avoids the problem where a trailing separator is not removed when win32api.GetFullPathName() is used.
-