Results 6 comments of Ben Kuhn

Ah--looks like `inobj.privileges` is the empty list, not `None`, if the YAML file doesn't define privileges. So adding the `is not None` check doesn't work, but it does pass my...

Cool. If you're bisecting, here's the test case script I was using: ```bash #!/bin/bash DB_NAME=__priv_test__ createdb $DB_NAME &>/dev/null python pyrseas/dbtoyaml.py --no-owner --no-privileges $DB_NAME | tee db.yaml echo '=== SQL output...

Yeah, the special case hack wouldn't solve things for me or (I think) other Mac users, because the default Postgres user is `$USER` and not `postgres`. It looks like the...

While this is difficult in principle if `d_untyped` is not annotated (because it's inferred as `Dict[str,object]`), the same errors occur even if it's hand-annotated as `D`. This gap makes it...

I'm still seeing a similar error on eventlet 0.21.0 due to some kind of incredibly bizarre interaction with logging to the root logger at toplevel: https://github.com/benkuhn/eventlet-repro

``` $ python -V Python 3.6.1 ``` I've pushed an even more minimal repro. Still working on minimizing further. Note that it may be related to newrelic vendoring an old...