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
abcc168c
Commit
abcc168c
authored
Jan 02, 2009
by
Ronald Oussoren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for issue 1149804
parent
919697ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
Lib/plat-mac/macostools.py
Lib/plat-mac/macostools.py
+8
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/plat-mac/macostools.py
View file @
abcc168c
...
...
@@ -62,7 +62,14 @@ def mkdirs(dst):
if
os
.
sep
==
':'
and
not
':'
in
head
:
head
=
head
+
':'
mkdirs
(
head
)
os
.
mkdir
(
dst
,
0777
)
try
:
os
.
mkdir
(
dst
,
0777
)
except
OSError
,
e
:
# be happy if someone already created the path
if
e
.
errno
!=
errno
.
EEXIST
:
raise
def
touched
(
dst
):
"""Tell the finder a file has changed. No-op on MacOSX."""
...
...
Misc/NEWS
View file @
abcc168c
...
...
@@ -235,6 +235,9 @@ Library
- Issue #1737832 : plat-mac/EasyDialog.py no longer uses the broken aepack
module.
- Issue #1149804: macostools.mkdirs now even works when another process
creates one of the needed subdirectories.
Tools/Demos
-----------
...
...
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