This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gward
Recipients
Date 2004-06-03.01:24:16
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This problem was reported as an Optik bug (#813077),
but it's really a problem in textwrap.  (Darn, textwrap
is harder to tweak.)  In a nutshell,
TextWrapper._split() splits this string wrong:
  "the 'wibble-wobble' widget"
It should split into
  ['the', ' ', "'wibble-", "wobble'", ' ', 'widget']
but it actually splits into 
  ['the', ' ', "'", 'wibble-', "wobble'", ' ', 'widget']

Looks like that damn regex needs a bit more tweaking. 
SIgh.
History
Date User Action Args
2007-08-23 14:22:05adminlinkissue965425 messages
2007-08-23 14:22:05admincreate