mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
8 lines
181 B
Python
8 lines
181 B
Python
def test_null():
|
|
from _pydevd_bundle.pydevd_constants import Null
|
|
null = Null()
|
|
assert not null
|
|
assert len(null) == 0
|
|
|
|
with null as n:
|
|
n.write('foo') |