Bertrand Bonnefoy-Claudet

Results 13 issues of Bertrand Bonnefoy-Claudet

The envfile is often used in development but not in production. The absence of envfile is normal and shouldn't lead to a warning. Fixes #16.

#### Description Factory_boy keeps SQLAlchemy instances passed as argument to factories in memory, causing a memory leak and changing what requests SQLAlchemy performs. The changed behavior for SQLAlchemy, in our...

Bug
BadMagic
SQLAlchemy
Django

I made the following program: ```ocaml let main = let%lwt _response = Cohttp_lwt_unix.Client.get (Uri.of_string "http://127.0.0.1:8000") in Lwt.return () let () = Lwt_main.run main ``` When I run it in an...

Having type hints for this library would make it possible to check its usage in applications with Mypy. I currently have a [work-in-progress](https://github.com/python/typeshed/compare/master...bbc2:blinker-stubs?expand=1) of those type hints. Before it can...

Since importing `ujson` fails in a 3.7 pyenv virtualenv when 3.7 is not provided by the OS (it's the point of pyenv), the Python Language Server can't run there. I...

I'm not sure if this problem is most related to ppxlib or Dune but here it is. I'm trying to make a linter to be used with `dune build @lint`....

Those tests were only checking that the output was nonempty, so they would pretty much never detect anything fishy. We could go further but it's nontrivial because the output is...

Braces, used for table construction, are typically used with spaces inside them: ```lua t = { "content-0" } ``` There can be another style, however, which consists in sticking the...

Since a is an empty string, which Python considers false in a boolean context, `1` and `''` **evalutes** to `''`, and then `''` or `'second'` **evalutes** to `'second'`. Oops! That's...

As some Markdown notes grow big, it would be awesome to have access to a table of contents, to keep a high-level view of the document and quickly navigate to...