We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5436958 commit 11eb38eCopy full SHA for 11eb38e
tests/test_utils.py
@@ -193,9 +193,9 @@ def __init__(self):
193
194
def get_mem_addr(obj):
195
if sys.platform == "win32" and platform.python_implementation() != "PyPy":
196
- return f"0x0*{hex(id(no_repr_instance))[2:].upper()}"
+ return f"0x0*{hex(id(obj))[2:].upper()}"
197
else:
198
- return f"0x0*{hex(id(no_repr_instance))[2:]}"
+ return f"0x0*{hex(id(obj))[2:]}"
199
200
201
@pytest.mark.parametrize(
tox.ini
@@ -18,7 +18,7 @@ python =
18
19
[gh-actions]
20
python =
21
- 3.6: py36, docs, mypy
+ 3.6: py36
22
3.7: py37
23
3.8: py38
24
pypy3: pypy3
0 commit comments