Re: [Python-Dev] weird docstring generated by argument clinic

2014-01-29 Thread Stefan Behnel
Larry Hastings, 30.01.2014 08:14: > On 01/29/2014 10:25 PM, Stefan Behnel wrote: >> for two days now, the signature embedding tests in Cython have been failing >> with this (doctest) error: >> >> """ >> Expected: >> f_D(long double D) -> long double >> Got: >> f_DNone >> f_D(long dou

Re: [Python-Dev] weird docstring generated by argument clinic

2014-01-29 Thread Stefan Behnel
Guido van Rossum, 30.01.2014 07:36: > I suppose it's related to this checkin: > [...] > Issue #20326: Argument Clinic now uses a simple, unique signature to > annotate text signatures in docstrings, resulting in fewer false > positives.[...] Thanks, I'll comment there. > On Wed, Jan 29, 2014 at

Re: [Python-Dev] weird docstring generated by argument clinic

2014-01-29 Thread Larry Hastings
On 01/29/2014 10:25 PM, Stefan Behnel wrote: Hi, for two days now, the signature embedding tests in Cython have been failing with this (doctest) error: """ Expected: f_D(long double D) -> long double Got: f_DNone f_D(long double D) -> long double """ The string "f_DNone" should

Re: [Python-Dev] weird docstring generated by argument clinic

2014-01-29 Thread Guido van Rossum
I suppose it's related to this checkin: changeset: 88792:d6311829da15 parent: 88788:6b37e6aff9ef user:Larry Hastings date:Tue Jan 28 05:00:08 2014 -0800 files: Include/object.h Lib/idlelib/idle_test/test_calltips.py Lib/inspect.py Lib/test/test_capi.py Lib/test/test_g