manuskript/manuskript/ui/views
Curtis Gedak 7f592bae41 Fix Python 3.6 DeprecationWarning invalid escape sequence messages
Fix by ensuring that regular expressions are constructed using either
raw string literals [1] or double backslashes [2].

[1] https://stackoverflow.com/questions/44325948/pandas-invalid-escape-sequence-after-update
[2] https://github.com/joblib/joblib/pull/526

Note that python only shows the deprecation warnings on initial run [3].

[3] https://bugs.python.org/issue30091

To work around this issue, remove the cached bytecode with:

    find . -name "__pycache__" -exec rm -rf {} \;

Then to prevent compiling to bytecode add the "-B" option to python:

    python3 -B -m pytest -vs
2018-11-16 12:52:56 -07:00
..
__init__.py Renaming source folder 2016-02-06 08:38:33 +01:00
basicItemView.py Changes Outline enums to IntEnum 2017-11-15 20:58:12 +01:00
basicItemView_ui.py Subclass textEditView 2017-11-27 15:00:07 +01:00
basicItemView_ui.ui Subclass textEditView 2017-11-27 15:00:07 +01:00
characterTreeView.py Changes every Enum to IntEnum 2017-11-15 21:05:48 +01:00
chkOutlineCompile.py Checkpoint: refactoring 2017-11-18 20:53:10 +01:00
cmbOutlineCharacterChoser.py Changes Outline enums to IntEnum 2017-11-15 20:58:12 +01:00
cmbOutlineLabelChoser.py Changes Outline enums to IntEnum 2017-11-15 20:58:12 +01:00
cmbOutlineStatusChoser.py Changes Outline enums to IntEnum 2017-11-15 20:58:12 +01:00
corkDelegate.py Fixes #246: Index card status can spillover 2017-12-04 13:52:58 +01:00
corkView.py Adds: go-up button. See #157 2017-10-14 21:39:16 +02:00
dndView.py Cleaning up imports, at last 2016-02-06 12:34:22 +01:00
lineEditView.py Changes Outline enums to IntEnum 2017-11-15 20:58:12 +01:00
MDEditCompleter.py Adds #259: Focus Mode (poke #234) 2017-12-05 23:18:32 +01:00
MDEditView.py Fix Python 3.6 DeprecationWarning invalid escape sequence messages 2018-11-16 12:52:56 -07:00
metadataView.py Fix typos in code comments, invisible to end-users. 2018-01-29 10:30:41 -07:00
metadataView_ui.py Subclass textEditView 2017-11-27 15:00:07 +01:00
metadataView_ui.ui Subclass textEditView 2017-11-27 15:00:07 +01:00
outlineBasics.py Fix typos in code comments, invisible to end-users. 2018-01-29 10:30:41 -07:00
outlineDelegates.py Checkpoint: refactoring 2017-11-18 20:53:10 +01:00
outlineView.py Changes Outline enums to IntEnum 2017-11-15 20:58:12 +01:00
PDFViewer.py Adds QtWebEngine support, while keeping QtWebKit support. 2017-06-15 15:24:06 +02:00
plotDelegate.py Fix typos that are visible to end-users. 2018-01-29 10:30:41 -07:00
plotTreeView.py Changes every Enum to IntEnum 2017-11-15 21:05:48 +01:00
propertiesView.py Changes Outline enums to IntEnum 2017-11-15 20:58:12 +01:00
propertiesView_ui.py Fixes a bug when entering non-digit values for item's goal in metadata 2017-11-09 20:30:54 +01:00
propertiesView_ui.ui Purging types from propertiesView 2016-03-30 10:18:09 +02:00
sldImportance.py Moves sldImportance to views folder, where it belongs 2016-03-03 18:55:57 +01:00
sldImportance_ui.py Moves sldImportance to views folder, where it belongs 2016-03-03 18:55:57 +01:00
sldImportance_ui.ui Moves sldImportance to views folder, where it belongs 2016-03-03 18:55:57 +01:00
storylineView.py Changes Outline enums to IntEnum 2017-11-15 20:58:12 +01:00
storylineView_ui.py Adds a few more icons 2017-10-16 10:48:04 +02:00
storylineView_ui.ui Adds a few more icons 2017-10-16 10:48:04 +02:00
textEditView.py Fix crash in Outline mode with multi-item select #355 2018-10-14 11:10:46 -06:00
treeDelegates.py Fix typos in code comments, invisible to end-users. 2018-01-29 10:30:41 -07:00
treeView.py Merge branch 'master' into develop 2017-11-30 10:13:25 +01:00
webView.py Conditional import of QtWebEngine or QtWebKit 2017-06-20 15:24:15 +02:00