61 pass |
61 pass |
62 try: |
62 try: |
63 self.setFoldQuotes(Preferences.getEditor("PythonFoldQuotes")) |
63 self.setFoldQuotes(Preferences.getEditor("PythonFoldQuotes")) |
64 self.setStringsOverNewlineAllowed( |
64 self.setStringsOverNewlineAllowed( |
65 Preferences.getEditor("PythonStringsOverNewLineAllowed")) |
65 Preferences.getEditor("PythonStringsOverNewLineAllowed")) |
|
66 except AttributeError: |
|
67 pass |
|
68 try: |
|
69 self.setHighlightSubidentifiers( |
|
70 Preferences.getEditor("PythonHighlightSubidentifier")) |
66 except AttributeError: |
71 except AttributeError: |
67 pass |
72 pass |
68 |
73 |
69 def getIndentationDifference(self, line, editor): |
74 def getIndentationDifference(self, line, editor): |
70 """ |
75 """ |