Skip to content

Commit f6a197b

Browse files
committed
WIP
1 parent 6c81a1b commit f6a197b

15 files changed

Lines changed: 134 additions & 39 deletions

File tree

.github/workflows/tests.yml

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
include:
28-
- tox_env: py27-m_ans-ans2.10
29-
- tox_env: py27-m_ans-ans4
30-
31-
- tox_env: py36-m_ans-ans2.10
32-
- tox_env: py36-m_ans-ans4
33-
3428
- tox_env: py27-m_mtg
3529
- tox_env: py36-m_mtg
3630

@@ -86,34 +80,6 @@ jobs:
8680
fail-fast: false
8781
matrix:
8882
include:
89-
- tox_env: py311-m_ans-ans2.10
90-
python_version: '3.11'
91-
- tox_env: py311-m_ans-ans3
92-
python_version: '3.11'
93-
- tox_env: py311-m_ans-ans4
94-
python_version: '3.11'
95-
- tox_env: py311-m_ans-ans5
96-
python_version: '3.11'
97-
- tox_env: py313-m_ans-ans6
98-
python_version: '3.13'
99-
- tox_env: py313-m_ans-ans7
100-
python_version: '3.13'
101-
- tox_env: py313-m_ans-ans8
102-
python_version: '3.13'
103-
- tox_env: py314-m_ans-ans9
104-
python_version: '3.14'
105-
- tox_env: py314-m_ans-ans10
106-
python_version: '3.14'
107-
- tox_env: py314-m_ans-ans11
108-
python_version: '3.14'
109-
- tox_env: py314-m_ans-ans12
110-
python_version: '3.14'
111-
- tox_env: py314-m_ans-ans13
112-
python_version: '3.14'
113-
114-
- tox_env: py314-m_ans-ans13-s_lin
115-
python_version: '3.14'
116-
11783
- tox_env: py314-m_mtg
11884
python_version: '3.14'
11985

@@ -161,11 +127,6 @@ jobs:
161127
fail-fast: false
162128
matrix:
163129
include:
164-
- tox_env: py314-m_lcl-ans13
165-
python_version: '3.14'
166-
- tox_env: py314-m_lcl-ans13-s_lin
167-
python_version: '3.14'
168-
169130
- tox_env: py314-m_mtg
170131
python_version: '3.14'
171132

tests/data/importer/nonascii_pkg/__init__.py

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hej():
2+
return "This module is named 'Hello world', in Swedish"

tests/data/importer/nonascii_pkg/implicit/__init__.py

Whitespace-only changes.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"""
2+
>>> print(string_literal())
3+
Sphinx of black quartz, judge my vow.
4+
"""
5+
6+
def doc_string():
7+
return __doc__
8+
9+
def string_literal():
10+
return u'Sphinx of black quartz, judge my vow.'
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"""
2+
>>> print(string_literal())
3+
Hello world, Καλημέρα κόσμε, コンニチハ
4+
"""
5+
6+
def doc_string():
7+
return __doc__
8+
9+
def string_literal():
10+
return u'Hello world, Καλημέρα κόσμε, コンニチハ'

tests/data/importer/nonascii_pkg/with_bom/__init__.py

Whitespace-only changes.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"""
2+
>>> print(string_literal())
3+
Hello world, Καλημέρα κόσμε, コンニチハ
4+
"""
5+
6+
def doc_string():
7+
return __doc__
8+
9+
def string_literal():
10+
return u'Hello world, Καλημέρα κόσμε, コンニチハ'

tests/data/importer/nonascii_pkg/with_coding/__init__.py

Whitespace-only changes.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# -*- coding: ascii -*-
2+
"""
3+
>>> print(string_literal())
4+
Sphinx of black quartz, judge my vow.
5+
"""
6+
7+
def doc_string():
8+
return __doc__
9+
10+
def string_literal():
11+
return u'Sphinx of black quartz, judge my vow.'

0 commit comments

Comments
 (0)