Eric Mark Martin
Eric Mark Martin
I am using PyKeyboardEvent to listen for keyboard events on OS X, but Python 3 crashes when I run my instance of the subclass. ### Code ``` >>> from pykeyboard...
Add a function that deserializes first valid cbor value out of a slice of bytes and returns the number of consumed bytes.
Currently, `spotify vol` will give you a message if you use the command incorrectly: ``` $ spotify vol foo Improper use of 'vol' command The 'vol' command should be used...
Attends to #59. Adds `spotify -v` and `spotify --version` commands to display shpotify version: ``` $ spotify -v shpotify 1.2.0 $ spotify --version shpotify 1.2.0 ```
For the sake of debugging and compliance with CLI standards, a `version` command of some sort should be included in the shpotify API. Possible ideas for the command syntax (multiple...
I observed the following behavior: ``` $ spotify vol Current Spotify volume level is 100. $ spotify vol 90 $ spotify vol Current Spotify volume level is 89. ``` This...
Even with `#[use_macro]`, the plugin does not autocomplete macros from imported crates.
Update URL to reflect the website being on Github pages.
When running the regular expression `Re.rep1 (Re.alt [Re.epsilon; Re.any])` on a string `"foobarbaz"`, we get the match `"foobarbaz"` (running `Re.Group.Get (Re.exec re "foobarbaz) 0"`). I know other regular expression libraries...