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
46cd93a4
Commit
46cd93a4
authored
Apr 12, 2010
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed #8375 - test_distutils now checks what remains to be cleaned up during tearDown
parent
7770f145
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
Lib/distutils/tests/support.py
Lib/distutils/tests/support.py
+2
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/distutils/tests/support.py
View file @
46cd93a4
...
...
@@ -63,6 +63,8 @@ class TempdirManager(object):
super
().
tearDown
()
while
self
.
tempdirs
:
d
=
self
.
tempdirs
.
pop
()
if
not
os
.
path
.
exists
(
d
):
continue
shutil
.
rmtree
(
d
,
os
.
name
in
(
'nt'
,
'cygwin'
))
def
mkdtemp
(
self
):
...
...
Misc/NEWS
View file @
46cd93a4
...
...
@@ -312,6 +312,9 @@ C-API
Library
-------
- Issue #8375: test_distutils now checks if the temporary directory are still
present before it cleans them.
- Issue #8374: Update the internal alias table in the :mod:`locale` module
to cover recent locale changes and additions.
...
...
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