18 Commits (0648458b848add652247fceff38422dbb61a63f3)

Author SHA1 Message Date
Ezio Melotti 5a3ef5b22a #9018: os.path.normcase() now raises a TypeError if the argument is not str or bytes. 16 years ago
Benjamin Peterson d71ca41b37 Remove os.path.walk 18 years ago
Thomas Wouters 89f507fe8c Four months of trunk changes (including a few releases...) 20 years ago
Georg Brandl f0de6a18bb Bug #1266283: lexists() is not exported from os.path 21 years ago
Georg Brandl 649f8e7de2 patch [ 1105730 ] Faster commonprefix in macpath, ntpath, etc. 21 years ago
Johannes Gijsbers ae882f7984 Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists in glob.glob. 22 years ago
Martin v. Löwis bdec50f027 Feature request #935915: Add os.path.devnull. 22 years ago
Walter Dörwald f0dfc7ac5c Fix a bunch of typos in documentation, docstrings and comments. 23 years ago
Skip Montanaro 117910dc44 Migrate definitions of several platform-dependent path-related variables 24 years ago
Neal Norwitz 61cdac6d3d Fix SF #659228, 'realpath' function missing from os.path 24 years ago
Martin v. Löwis 96a60e4af5 Patch #658927: Add getctime to os.path. 24 years ago
Mark Hammond 8696ebcd28 Add os.path.supports_unicode_filenames for all platforms, 24 years ago
Raymond Hettinger 32200aeac6 Replaced obsolete stat module constants with equivalent attributes 24 years ago
Raymond Hettinger 54f0222547 SF 563203. Replaced 'has_key()' with 'in'. 24 years ago
Tim Peters 863ac44b74 Whitespace normalization. 25 years ago
Guido van Rossum 8ca162f417 Partial introduction of bools where appropriate. 25 years ago
Tim Peters bc0e910826 Convert a pile of obvious "yes/no" functions to return bool. 25 years ago
Andrew MacIntyre 5cef57131f OS/2 EMX port Library and regression test changes: 25 years ago
Mark Hammond f717f0500c Allow abspath to still do something sensisble if the nt module can not be imported. 25 years ago
Tim Peters 6a3e5f14a6 SF bug 478425: Change in os.path.join (ntpath.py) 25 years ago
Tim Peters cf5e6a4a5d SF bug [#469732] os.path.walk docstring inconsistent. 25 years ago
Guido van Rossum 83eeef4b06 SF patch #461781 by Chris Lawrence: os.path.realpath - Resolve symlinks: 25 years ago
Tim Peters 54a14a373e SF bug #456621: normpath on Win32 not collapsing c:\\.. 25 years ago
Tim Peters 33dc0a1705 One more crack at join(): stop trying to pretend this isn't a mass of 25 years ago
Tim Peters 4223f89edd Change ntpath.join() so that join("d:/", "/whatever") returns 25 years ago
Fred Drake 79e75e1916 Use string.ascii_letters instead of string.letters (SF bug #226706). 25 years ago
Tim Peters 1bdd0f2559 SF bug #44271: os.path.expanduser problem w/o HOME set. 25 years ago
Fred Drake da05e977f3 abspath(): Fix inconsistent indentation. 26 years ago
Mark Hammond ef8b654bbe 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. 26 years ago
Skip Montanaro 269b83bc05 added several more __all__ lists 26 years ago
Tim Peters 2344fae6d0 Whitespace normalization. 26 years ago
Fred Drake 8152d32375 Update the code to better reflect recommended style: 26 years ago
Fred Drake b4e460ac4b Avoid import of string module; it is only needed for expandvars(). 26 years ago
Tim Peters 0eeba5b24b Part of SF patch 101481: on Windows, os.path.join("a:", "b") should yield 26 years ago
Skip Montanaro 623583165e revert semantics of commonprefix to work character-by-character 26 years ago
Mark Hammond 647d2fe145 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()) 26 years ago
Skip Montanaro 1d3dd74574 * split on / or \ 26 years ago
Skip Montanaro 4d5d5bf5ae forgot to change copy.copy(m) to m[:] 26 years ago
Skip Montanaro 97bc98aea7 fixed semantics of commonprefix to work by path elements instead of 26 years ago
Fred Drake 162bd855a6 Fix bug #345 reported by David Bolen <db3l@fitlinxx.com>: 26 years ago
Fred Drake ef0b5dd080 Typo in a comment: "wheter" --> "whether" 27 years ago
Guido van Rossum 823e91c767 Optimize abspath() slightly for the case that win32api can't be 27 years ago
Guido van Rossum 6dfc792fea In abspath(), always use normpath(), even when win32api is available 27 years ago
Guido van Rossum f618a48d11 Correct typo in walk.__doc__ reported by Francois Pinard. 27 years ago
Guido van Rossum f3c695c467 Withdraw the UNC support from splitdrive(). Instead, a new function 28 years ago
Guido van Rossum 8f0fa9e47f New code for split() by Tim Peters, behaves more like posixpath.split(). 28 years ago
Guido van Rossum 534972bce2 New splitdrive() that knows about UNC paths (e.g., network paths like 28 years ago
Guido van Rossum 9787bea4cd Use win32api.GetFullPathName(path) if it exists to implement abspath(). 28 years ago
Guido van Rossum e294cf620a Add abspath() 28 years ago
Guido van Rossum 2bc1f8f07e Added getsize(), getmtime(), getatime() 28 years ago