Change by Yevhenii Hyzyla :
--
versions: +Python 3.11 -Python 3.8
___
Python tracker
<https://bugs.python.org/issue45997>
___
___
Python-bugs-list mailin
Yevhenii Hyzyla added the comment:
Thanks for response!
> A hero who can help is welcome!
I will try to make PR :raising_hand
--
type: behavior ->
versions: +Python 3.8 -Python 3.11
___
Python tracker
<https://bugs.python.org/i
New submission from Yevhenii Hyzyla :
Class `asyncio.Semaphore` has dequeue in implementation for waiters of
semaphore and seems like the intention of this dequeue is to maintain FIFO
queue of waiters. But it doesn't work, coroutine that releases semaphore can
acquire semaphore again.
Change by Yevhenii Hyzyla :
--
title: Use same function signature for datetime.time.strftime -> Use the same
function signature for datetime.time.strftime
___
Python tracker
<https://bugs.python.org/issu
New submission from Yevhenii Hyzyla :
Method datetime.time.strftime in Python and C implementation has different
signature. Python implementation use `fmt` as argument and C implementation use
`format` as argument.
Python implementation:
```python
def strftime(self, fmt):
...
```
C