Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bbf7a407
Commit
bbf7a407
authored
Sep 28, 2001
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added note about non-support of UNC paths on Windows.
This fixes SF bug #465447.
parent
b387860c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
Doc/lib/libos.tex
Doc/lib/libos.tex
+2
-1
Doc/lib/libposixpath.tex
Doc/lib/libposixpath.tex
+4
-0
No files found.
Doc/lib/libos.tex
View file @
bbf7a407
...
...
@@ -634,7 +634,8 @@ Recursive directory creation function. Like \function{mkdir()},
but makes all intermediate-level directories needed to contain the
leaf directory. Throws an
\exception
{
error
}
exception if the leaf
directory already exists or cannot be created. The default
\var
{
mode
}
is
\code
{
0777
}
(octal).
is
\code
{
0777
}
(octal). This function does not properly handle UNC
paths (only relevant on Windows systems).
\versionadded
{
1.5.2
}
\end{funcdesc}
...
...
Doc/lib/libposixpath.tex
View file @
bbf7a407
...
...
@@ -7,6 +7,10 @@
This module implements some useful functions on pathnames.
\index
{
path!operations
}
\strong
{
Warning:
}
On Windows, many of these functions do not properly
support UNC pathnames.
\function
{
splitunc()
}
and
\function
{
ismount()
}
do handle them correctly.
\begin{funcdesc}
{
abspath
}{
path
}
Return a normalized absolutized version of the pathname
\var
{
path
}
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment