New submission from Nikita Sobolev <m...@sobolevn.me>:

There are several problems in 
https://github.com/python/cpython/blob/549e62827262264cda30455e10e315602129da72/Lib/asyncio/windows_events.py#L31-L32

1. For some reason this module uses both `NULL` and `_winapi.NULL`, `INFINITE` 
and `_winapi.INFINITE`. There's no system to it. Besides, they are have equal 
values. I think it better to use aliases to `_winapi` constants than redefine 
them
2. Here 
https://github.com/python/cpython/blob/549e62827262264cda30455e10e315602129da72/Lib/asyncio/windows_events.py#L408
 `INFINITE` is not used, but should. It would increase readability. Compare:

- `def __init__(self, concurrency=0xffffffff):` < not clear
- `def __init__(self, concurrency=INFINITE):` < clear

The PR is on its way.

----------
components: asyncio
messages: 409570
nosy: asvetlov, sobolevn, yselivanov
priority: normal
severity: normal
status: open
title: Improve constants usage / definition in asyncio.windows_events
type: behavior
versions: Python 3.11

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue46238>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to