diff options
| author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2019-08-27 12:09:19 +0000 |
|---|---|---|
| committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2019-08-27 12:09:19 +0000 |
| commit | 7708c03b89611ade6267340043f561f358ca4e19 (patch) | |
| tree | da98dd54da8866fd6ae0d02ce6a93ec1d1d380b0 /docutils/test | |
| parent | 2ebc04ce3e181cd5c8ad3b6e40ccadf39d497ef3 (diff) | |
| download | docutils-7708c03b89611ade6267340043f561f358ca4e19.tar.gz | |
py3: Replace 'ur' prefix
While the 'u' prefix was backported to Python 3.3 or thereabouts, 'ur'
remains invalid in Python 3. Just escape all backslashes and use plain
old 'u'.
Based on patch by Stephen Finucane <stephen@that.guru>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@8366 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/test')
| -rwxr-xr-x | docutils/test/test_parsers/test_rst/test_east_asian_text.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docutils/test/test_parsers/test_rst/test_east_asian_text.py b/docutils/test/test_parsers/test_rst/test_east_asian_text.py index 436d1da94..22995ee3f 100755 --- a/docutils/test/test_parsers/test_rst/test_east_asian_text.py +++ b/docutils/test/test_parsers/test_rst/test_east_asian_text.py @@ -50,12 +50,12 @@ u"""\ タイトル2 ======== """], -[ur""" +[u""" +-----------------------+ | * ヒョウ:ダイ1ギョウ | | * ダイ2ギョウ | +-----------------------+ -| \* ダイ1ギョウ | +| \\* ダイ1ギョウ | | * ダイ2ギョウ | +-----------------------+ """, |
