liftoff / GateOne

Gate One is an HTML5-powered terminal emulator and SSH client
http://liftoffsoftware.com/Products/GateOne
Other
6.28k stars 925 forks source link

Stop using reserved keywords `async` and `await`. #748

Open JoeKun opened 3 years ago

JoeKun commented 3 years ago

Since Python 3.7, async and await have become reserved keyword, which can't be used in the names of modules, parameters, or methods.

So replace previous usage of async in gateone with asynchronous, and await with block_await.

This fixes issue #730: gateone.async import issue.