Inada Naoki

Results 343 comments of Inada Naoki

Oh, I used git-new-workdir (in git's contrib directory). git worktree seems better. Thank you.

Use `git worktree add --force` (or `-f`) or `git worktree add --detach`. See `man git-worktree` for detail.

https://github.com/mopemope/meinheld/blob/94fc8dc49a6c36b9abbf9276943d443bfce55f83/meinheld/server/server.c#L1239-L1269 server.c uses sockaddr_in structure it is only for IPv4.

@mopemope git submodule, git subtree, git subtree --squash どれがいい?

https://twitter.com/mopemope/status/939826388848087042 @mopemope agreed to remove async support. So, my plan is: * 0.7: Deprecate greenlet related features. All tests are running with normal thread. * 1.0: Remove greenlet related features...

I never want add real SQL parser. So I never support such query by regular expression. executemany() by multi query will solve it. But I don't have motivation for improving...

MariaDB supports original bulk insert. https://mariadb.com/kb/en/library/bulk-insert-row-wise-binding/ If MySQL follow MariaDB, I want to implement it, instead of multi statement hack.

As LGTM.com reports, you need to fix SSCursor and SSDictCursor too.

I tried to change it long ago. But I can't do it because Django depended to the empty tuple. I don't know current Django behavior. Please run Django test for...