fix DeprecationWarning about invalid escape characters#856
Conversation
|
The addition of the backslashes was to fix problems when building docs in sphinx. I noticed that most of these are in single backticks; that's incorrect rst (correct Markdown). Maybe switch those to the double backticks that rst uses? Please do build docs (just |
|
Alright, python3 does not give |
|
By this:
I meant that the way it looks now is wrong. The stuff in italics should be in monospace font. This is old stuff in OPS; we never fixed some old docs, and were writing more like Markdown than RST. As long as your working on these sections, do you mind switching them to double-backticks, so they correctly render as monospace font? The rest looks good to me! |
sure, done |
This morning, running
py.testwith python3.7. Spat out theseDeprecationWarnings:Looking at SO it seems due to python
3reading it as Unicode characters instead of a raw string.This might break doc building, but did not have thad time yet to look at that