Author: mtredinnick
Date: 2007-03-30 07:00:38 -0500 (Fri, 30 Mar 2007)
New Revision: 4871
Modified:
django/trunk/django/utils/text.py
Log:
Removed some trailing whitespace that had smuggled itself aboard in [4870].
Modified: django/trunk/django/utils/text.py
===================================================================
--- django/trunk/django/utils/text.py 2007-03-30 11:57:50 UTC (rev 4870)
+++ django/trunk/django/utils/text.py 2007-03-30 12:00:38 UTC (rev 4871)
@@ -192,8 +192,8 @@
backslashes. In the output, strings will keep their initial and trailing
quote marks.
- >>> list(smart_split('This is "a person\'s" test.'))
- ['This', 'is', '"a person\'s"', 'test.']
+ >>> list(smart_split('This is "a person\'s" test.'))
+ ['This', 'is', '"a person\'s"', 'test.']
"""
for bit in smart_split_re.finditer(text):
bit = bit.group(0)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---