Results 6 issues of Kirk Easterson

OS: Kubuntu 20.04 To recreate: ``` git clone https://github.com/nanomsg/nnpy.git cd nnpy/nnpy python tests.py ``` This produces the output:: ``` Traceback (most recent call last): File "tests.py", line 2, in import...

`tests.py` doesn't run as-is. So I created an `nnpy/nnpy/tests/` drectory and I moved `tests.py` there.

**To recreate:** Install `nnpy` ``` sudo python setup.py install ``` Create a new file (e.g. getting_started.py) with the code from "Getting Started" ``` import nnpy pub = nnpy.Socket(nnpy.AF_SP, nnpy.PUB) pub.bind('inproc://foo')...

This pull request allows for more control over what happens when the current working directory is changed to the specified worktree. A workaround was mentioned in #13 , but it...

*Issue*: Although v2.0.0 was released on github, it is not released to `go.pkg.dev`. Reference the below screenshot. `go get github.com/taxjar/taxjar-go@latest` results in v1.1.1 being added to `go.mod`. https://pkg.go.dev/github.com/taxjar/taxjar-go ![2024-01-03_13-02-46](https://github.com/taxjar/taxjar-go/assets/17068532/0343f3bb-833b-4f31-a4cd-4c0843ad4ec5) *Workaround*:...

*Problem:* If a response results in an error when being unmarshaled, the response is lost. This makes it impossible to differentiate a 200 response from a 400 response. [This code](https://github.com/labd/commercetools-go-sdk/blob/90b121c66303ba68c0caa66bacffcd4e438cb2d7/platform/client_payments_by_project_key_me_payments_by_id_post.go#L90-L102)...

enhancement