Skip to content

Commit 3d47055

Browse files
authored
Merge pull request #7190 from hroncok/backport-7179
2 parents 020831d + 2a5ca51 commit 3d47055

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ classifiers =
3030
Programming Language :: Python :: 3.5
3131
Programming Language :: Python :: 3.6
3232
Programming Language :: Python :: 3.7
33+
Programming Language :: Python :: 3.8
34+
Programming Language :: Python :: 3.9
3335
platforms = unix, linux, osx, cygwin, win32
3436

3537
[options]

testing/code/test_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ class A(object):
501501
class B(object):
502502
pass
503503

504-
B.__name__ = "B2"
504+
B.__name__ = B.__qualname__ = "B2"
505505
assert getfslineno(B)[1] == -1
506506

507507

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ envlist =
1111
py36
1212
py37
1313
py38
14+
py39
1415
pypy
1516
pypy3
1617
{py27,py37}-{pexpect,xdist,twisted,numpy,pluggymaster}

0 commit comments

Comments
 (0)