diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-29 07:24:45 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-29 07:24:45 +0000 |
| commit | aa538766107c8c74e16cecc3d2e6b29b28b580a0 (patch) | |
| tree | 4ce9e36d3e9ee3f5e3702070b9316be7b50f334d | |
| parent | 2a4990a5de30da3a58872395d52b6b6fcff1b7a4 (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.py | 1 |
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 |
