From aa538766107c8c74e16cecc3d2e6b29b28b580a0 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 29 Mar 2010 07:24:45 +0000 Subject: [PATCH] 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 --- tests/regressiontests/makemessages/tests.py | 1 + 1 file changed, 1 insertion(+) 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