From noreply at sourceforge.net Wed Jul 14 18:32:06 2004 From: noreply at sourceforge.net (SourceForge.net) Date: Wed Jul 14 18:32:10 2004 Subject: [Python-mode] [ python-mode-Bugs-963247 ] Triple-quoted string font-lock problem Message-ID: Bugs item #963247, was opened at 2004-05-30 15:57 Message generated for change (Comment added) made by bwarsaw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=581349&aid=963247&group_id=86916 Category: None Group: None Status: Open >Resolution: Wont Fix Priority: 5 Submitted By: James B. Reese (jreese99) Assigned to: Nobody/Anonymous (nobody) Summary: Triple-quoted string font-lock problem Initial Comment: Font-lock in xemacs is not displaying triple-quoted strings correctly. For example: """ This is "a test" string on multiple lines. """ The phrases "This is " and " string on multiple lines." are formatted as strings, but "a test" is not formatted as a string. It appears that the triple quote is being treated as three individual quotation marks instead of as a single entity. A fix for this will be greatly appreciated. I *love* python-mode.el! ---------------------------------------------------------------------- >Comment By: Barry A. Warsaw (bwarsaw) Date: 2004-07-14 12:32 Message: Logged In: YES user_id=12800 This is not something python-mode can realistically address. As you properly guess, because of limitations in Emacs' (and XEmacs') built-in syntax table implementation, python-mode has no choice but to treat triple quoted strings as three separate entities. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=581349&aid=963247&group_id=86916 From noreply at sourceforge.net Thu Jul 15 08:33:42 2004 From: noreply at sourceforge.net (SourceForge.net) Date: Thu Jul 15 08:33:44 2004 Subject: [Python-mode] [ python-mode-Bugs-991383 ] Yanking unicode strings Message-ID: Bugs item #991383, was opened at 2004-07-15 08:33 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=581349&aid=991383&group_id=86916 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Henrik Ekelund (ekelund) Assigned to: Nobody/Anonymous (nobody) Summary: Yanking unicode strings Initial Comment: When yanking unicode strings, the unicode characters are almost formated as python expects it but not quite. A unicode character is converted to a string such as \x{00E5} , but the curly brackets shouldn't be there and it should be a u insted of an x. The correct syntax is \u00E5 . Is there a way to change this? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=581349&aid=991383&group_id=86916