Replies: 2 comments 17 replies
-
Hi Zac, and thanks for your kind words! Yeah I'm quite excited too 😄
|
Beta Was this translation helpful? Give feedback.
-
Version 0.3.0 looks great! I have a few remaining non-blocking warnings; here are reproducing examples if you want to do something about them. I'm not waiting though - feel free to add Hypothesis to a list of users, and thanks again! In the following snippet, I get a .. code-block:: python
from re import compile, match
compile("abc")
match("a", "b") "Fluent interfaces" where method calls are chained together tend to emit warnings like .. code-block:: python
from hypothesis.strategies import integers
even_ints = integers(
**kwargs
).map(lambda x: x * 2) Doctest blocks aren't supported yet, but it would be a nice feature 😉 The catch: if you use .. code-block:: doctest
>>> print("a\n\nb")
a
<BLANKLINE>
b (which I discovered because we have a |
Beta Was this translation helpful? Give feedback.
-
Thanks for building
sphinx-codeautolink
! It's a super exciting project, and I'm looking forward to adopting it in Hypothesis. While experimenting with that, I encountered a few things that I thought might be useful to report:.. code-block:: pycon
? IIRCblacken-docs
has some useful code...doctreedir
, which is probably already.gitignore
dconf.py
file, so that all our common names would be in scope. However, it looks likefrom ... import *
isn't yet supported and usingrst_prolog
like this doesn't work for some reason?If it did this would be a neat pattern to document though - do you know if there's something I should try instead?
RuntimeWarning
#28Beta Was this translation helpful? Give feedback.
All reactions