David Irvine

Results 5 issues of David Irvine

Hi. It was non-obvious to me how I would use this from JS, so I thought I'd update the docs to add a little usage section. Let me know what...

I'm getting an error using `toml==0.10.0`. `example.toml` file: ```toml [example] key = ['a', ''' something && make FOO=bar ''' ] ``` ```py >>> import toml >>> toml.load('example.toml') Traceback (most recent...

type: bug
component: decoder
syntax: strings

Just some small fixups: * ListenAndServeTLS allocated `addr` but never used it. * ListenAndServe didn't default to listen on `:http` like it should.

What do you think of this little tweak? Replaced the `sync.RWMutex` with a `sync.Once` so then I can check for isClosed() on an atomic int. This makes it cheap to...

What do you think of this? I took it from [here in net/http](https://golang.org/src/net/http/server.go#L2598) (tcpKeepAliveListener). They wrap their net.Listener in order to `conn.SetKeepAlive(true)` on each accepted connection when using `http.ListenAndServe`. As...