New submission from Michael Yoo :
Hi,
Recently I was working with ncurses, and when handling the mouse scroll events,
I noticed that the curses library does not include the BUTTON5_* macros
provided by ncurses. On my system, BUTTON5 corresponds to the mouse down event.
Is there a reason for
New submission from Michael Yoo :
Version: Python 3.7.3
When I run this code:
import asyncio
class TestAsyncGenerator:
def __init__(self):
pass
async def aiter(self):
yield 1
yield 2
async def main():
gen = TestAsyncGenerator()
async for number in