Frazer McLean

Results 31 comments of Frazer McLean

I'm not sure what you mean. I'm using a naming convention, and `op.f()` is present in my migrations around names that have already been converted (usually from `--autogenerate`).

> So what are you doing with your indexes ? I didn't have any that were truncated. > If you change your constraint name to op.f("some_long_constraint_"), everything works and no...

The current way of forcing fork is not correct either, ```python if platform.system() == "Darwin": multiprocessing.set_start_method("fork") ``` this is too blunt an instrument, and will even fail if set_start_method has...

I had this same problem on OS X 10.9.4, Python 3.4.1 I was able to install gizeh by [removing the first two lines](https://github.com/Zulko/gizeh/blob/master/setup.py#L1-2) from setup.py, since I already have a...

Please show the full traceback. Which database adapter are you using? It would be most helpful if you can provide a script to reproduce the problem.

My advice with `sqlalchemy_aio` is to close connections explicitly, which is most easily done using the async context managers. I don't think we can do anything async to clean up...

Please provide an [MCVE](https://stackoverflow.com/help/minimal-reproducible-example). I tried variants of this and wasn't able to reproduce: ```python import asyncio import os from sqlalchemy_aio import ASYNCIO_STRATEGY from sqlalchemy import Column, Integer, MetaData, Table,...

I have no plans at the moment, but I would accept a pull request.

Does the following bug have the same cause (with `--no-semi`)?: ```javascript const arr = [] arr.forEach(x => { [].forEach(y => {}) }) ``` after: ```javascript const arr = [] arr.forEach(x...

I considered that it might be ambiguous but eslint warns with `no-extra-semi`.