- 28 Mar, 2019 1 kayıt (commit)
-
-
- 12 Mar, 2019 1 kayıt (commit)
-
-
Anthony Sottile yazdı
-
- 25 Eki, 2018 1 kayıt (commit)
-
-
Tim Graham yazdı
Regression in b0bf51b3.
-
- 18 Eyl, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant to invalid paths. (#7695) Such functions as os.path.exists(), os.path.lexists(), os.path.isdir(), os.path.isfile(), os.path.islink(), and os.path.ismount() now return False instead of raising ValueError or its subclasses UnicodeEncodeError and UnicodeDecodeError for paths that contain characters or bytes unrepresentative at the OS level.
-
- 29 Tem, 2018 1 kayıt (commit)
-
-
Franz Wöllert yazdı
-
- 07 Ock, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 13 Ock, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 05 Eyl, 2016 1 kayıt (commit)
-
-
Larry Hastings yazdı
and Windows CE is no longer a relevant platform for Python.
-
- 26 Agu, 2016 1 kayıt (commit)
-
-
Brett Cannon yazdı
os.path. Thanks to Jelle Zijlstra for the initial patch against posixmodule.c.
-
- 15 Nis, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
This affects documentation, code comments, and a debugging messages.
-
- 19 May, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Idea by R. David Murray.
-
- 25 Mar, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 31 Mar, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Based on patch by Rafik Draoui.
-
- 04 Eki, 2014 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
more helpful error message for unsupported or mismatched types of arguments.
-
- 23 Tem, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 13 Şub, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
variables names and values.
-
- 27 Ock, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
is present.
-
- 16 Ara, 2013 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
* splitunc() no more return illegal result for paths with redundant slashes. * splitunc() now correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Deprecation warnings now emitted for every use of splitunc(). * Added tests for splitunc().
-
Serhiy Storchaka yazdı
(U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
-
- 01 Agu, 2013 1 kayıt (commit)
-
-
Tim Golden yazdı
a drive root on Windows. Original patch by Atsuo Ishimoto.
-
- 04 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 14 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
ModuleNotFoundError.
-
- 26 Ara, 2012 2 kayıt (commit)
-
-
Brian Curtin yazdı
-
Brian Curtin yazdı
By setting the st_dev attribute, we can then remove some Windows-specific code and move os.path.samefile/sameopenfile/samestat to Lib/genericpath.py so all platforms share the same implementation.
-
- 19 Ara, 2012 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
Patch by Serhiy Storchaka.
-
- 18 Ara, 2012 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
- 05 Eki, 2012 1 kayıt (commit)
-
-
Jesus Cea yazdı
-
- 09 Haz, 2011 3 kayıt (commit)
-
-
Brian Curtin yazdı
Rather than wrapping the C _isdir function in a Python function, just import the C _isdir function directly. Additionally, add in the docstring which was left out.
-
Brian Curtin yazdı
Rather than wrapping the C _isdir function in a Python function, just import the C _isdir function directly. Additionally, add in the docstring which was left out.
-
Brian Curtin yazdı
-
- 08 Haz, 2011 1 kayıt (commit)
-
-
Brian Curtin yazdı
By changing to the Windows GetFileAttributes API in nt._isdir we can figure out if the path is a directory without opening the file via os.stat. This has the minor benefit of speeding up os.path.isdir by at least 2x for regular files and 10-15x improvements were seen on symbolic links (which opened the file multiple times during os.stat). Since os.path.isdir is used in several places on interpreter startup, we get a minor speedup in startup time.
-
- 06 May, 2011 1 kayıt (commit)
-
-
Ronald Oussoren yazdı
Noticed while researching a buildbot failure due to a patch for issue #10684.
-
- 16 Mar, 2011 2 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
- 19 Eki, 2010 1 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
-
- 18 Eki, 2010 3 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
ntpath.relpath().
-
Hirokazu Yamamoto yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85689 | hirokazu.yamamoto | 2010-10-18 21:13:18 +0900 | 3 lines Issue #5117: Case normalization was needed on ntpath.relpath(). And fixed root directory issue on posixpath.relpath(). (Ported working fixes from ntpath) ........
-
Hirokazu Yamamoto yazdı
fixed root directory issue on posixpath.relpath(). (Ported working fixes from ntpath)
-
- 24 Eyl, 2010 1 kayıt (commit)
-
-
Brian Curtin yazdı
before, only attempt the import where nt._getfinalpathname could actually work, i.e., Windows Vista and beyond.
-