8000 Remove u'' · pyodide/sphinx-js@87129c9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 87129c9

Browse files
committed
Remove u''
u'' is a Python 2 thing we don't need anymore.
1 parent 8bcefc8 commit 87129c9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

tests/roots/test-incremental_js/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Minimal stuff needed for Sphinx to work:
66
source_suffix = '.rst'
77
master_doc = 'index'
8-
author = u'Nick Alexander'
8+
author = 'Nick Alexander'
99
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
1010
js_source_path = ['.', 'inner']
1111
root_for_relative_js_paths = '.'

tests/roots/test-incremental_ts/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Minimal stuff needed for Sphinx to work:
66
source_suffix = '.rst'
77
master_doc = 'index'
8-
author = u'Nick Alexander'
8+
author = 'Nick Alexander'
99
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
1010
js_language = 'typescript'
1111
js_source_path = ['.', 'inner']

tests/test_build_js/source/docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# Minimal stuff needed for Sphinx to work:
66
source_suffix = '.rst'
77
master_doc = 'index'
8-
author = u'Erik Rose'
8+
author = 'Erik Rose'
99
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']

tests/test_build_js/test_build_js.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_autofunction_typedef(self):
5151
"""Make sure @typedef uses can be documented with autofunction."""
5252
self._file_contents_eq(
5353
'autofunction_typedef',
54-
u'TypeDefinition()\n\n Arguments:\n * **width** (*Number*) -- width in pixels\n')
54+
'TypeDefinition()\n\n Arguments:\n * **width** (*Number*) -- width in pixels\n')
5555

5656
def test_autofunction_callback(self):
5757
"""Make sure @callback uses can be documented with autofunction."""
@@ -383,7 +383,7 @@ def test_restructuredtext_injection(self):
383383
"""
384384
self._file_contents_eq(
385385
'injection',
386-
u'injection(a_, b)\n\n'
386+
'injection(a_, b)\n\n'
387387
' Arguments:\n'
388388
' * **a_** -- Snorf\n\n'
389389
' * **b** (*type_*) -- >>Borf_<<\n\n'

tests/test_build_ts/source/docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Minimal stuff needed for Sphinx to work:
66
source_suffix = '.rst'
77
master_doc = 'index'
8-
author = u'Erik Rose'
8+
author = 'Erik Rose'
99
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
1010

1111
jsdoc_config_path = '../tsconfig.json'

tests/test_dot_dot_paths/source/docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# Minimal stuff needed for Sphinx to work:
66
source_suffix = '.rst'
77
master_doc = 'index'
8-
author = u'Erik Rose'
8+
author = 'Erik Rose'
99
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
1010
root_for_relative_js_paths = './'

0 commit comments

Comments
 (0)
0