Changeset 9148
- Timestamp:
- 10/05/08 06:39:58 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/management/commands/makemessages.py
r9110 r9148 2 2 import os 3 3 import sys 4 import warnings 4 5 from itertools import dropwhile 5 6 from optparse import make_option 7 6 8 from django.core.management.base import CommandError, BaseCommand 7 9 … … 10 12 except NameError: 11 13 from sets import Set as set # For Python 2.3 14 15 # Intentionally silence DeprecationWarnings about os.popen3 in Python 2.6. It's 16 # still sensible for us to use it, since subprocess didn't exist in 2.3. 17 warnings.filterwarnings('ignore', category=DeprecationWarning, message=r'os\.popen3') 12 18 13 19 pythonize_re = re.compile(r'\n\s*//')
