Gyubong Lee
Gyubong Lee
## Expected Behavior Keydown event is triggered by all type of key down ## Current Behavior Only detect modifier key (cmd, ctrl, alt...). Alphabet, number keys are not detected. ##...
## Environment system: mac OS Catalina node: 12.17.0 npm: 6.14.4 evernote module: 2.0.5 ## Issue It seems that example [code of README.md](https://github.com/evernote/evernote-sdk-js#notestore) not works. `words` of filter are causing type...
I guess this could be helpful to vim learners. Ref: https://blog.sanctum.geek.nz/vim-command-window/
### Changes - Support async-validate emails ### Notes I tested this after removing node-sass due to `node-sass` issue. Please let me know if node-sass should be removed from dev-dependency. ###...
### Changes - Support auto-focus ### Test - Manual Test
### Changes - Support enable flag ### Notes I tested this after removing node-sass due to `node-sass` issue. Please let me know if node-sass should be removed from dev-dependency. ###...
# Outline Add `co_names` to `PyCode` CPython document says `co_names` is a *tuple of names other than arguments and function locals* ## Reference https://github.com/python/cpython/blob/main/Doc/library/inspect.rst#types-and-members ## Result ``` >>>>> a =...
# Outline Always insert `None` at `code_stack.constants` ## Expected Result (cpython) ```py Python 3.10.6 (main, Aug 30 2022, 04:58:14) [Clang 13.1.6 (clang-1316.0.21.2.5)] on darwin Type "help", "copyright", "credits" or "license"...
Added `UTC` alias added in cpython 3.11 By the way, It seems maybe the `Lib/test/datetimetester.py` tests are missing, I'm wondering if this is intended. ## Manual test ``` >>>>> datetime.UTC...
## Expected Result In cpython, when arg is not a valid format string, `strftime` returns arg itself. ``` >>> import time >>> time.strftime("%Y") '2022' >>> time.strftime("%4Y") '4Y' ``` ## Actual...