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 cbd7928 commit 0a14f58Copy full SHA for 0a14f58
tests/test_base.py
@@ -834,7 +834,7 @@ def test_loop_call_later_handle_cancelled(self):
834
835
def test_loop_std_files_cloexec(self):
836
# See https://github.com/MagicStack/uvloop/issues/40 for details.
837
- for fd in {0, 1, 2}:
+ for fd in (0, 1, 2):
838
flags = fcntl.fcntl(fd, fcntl.F_GETFD)
839
self.assertFalse(flags & fcntl.FD_CLOEXEC)
840
0 commit comments