summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-03-29 07:24:45 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-03-29 07:24:45 +0000
commitaa538766107c8c74e16cecc3d2e6b29b28b580a0 (patch)
tree4ce9e36d3e9ee3f5e3702070b9316be7b50f334d
parent2a4990a5de30da3a58872395d52b6b6fcff1b7a4 (diff)
Fixed #13239 -- Forced the deletion of the Popen object, avoiding a bug in Python's subprocess cleanup code.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12874 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--tests/regressiontests/makemessages/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/regressiontests/makemessages/tests.py b/tests/regressiontests/makemessages/tests.py
index 7a3c1dcccc..5798e671b0 100644
--- a/tests/regressiontests/makemessages/tests.py
+++ b/tests/regressiontests/makemessages/tests.py
@@ -37,3 +37,4 @@ if xgettext_cmd:
xversion = (int(match.group('major')), int(match.group('minor')))
if xversion >= (0, 15):
from extraction import *
+ del p