This release is more about improving code style, but it also changes:
1. ...how the `gophient.types.Gopher.request()` should be invoked:
python
import gophient
client = gophient.Gopher()
Before:
client.request(['gopher.floodgap.com', 'groundhog/ws'])
After:
client.request('gopher.floodgap.com', 'groundhog/ws')
2. ...how the exceptions should be excepted:
python
import gophient
try:
...
Before:
except gophient.exc.TypeMismatch: gophient.exc.GopherException
...
After:
except gophient.exc.TypeMismatchError: gophient.exc.GopherError
...