In article <mpg.2f2cecb4624e49c4989...@nntp.aioe.org>, mar...@gmail.com 
says...
> 
> 
> So I'd rather see:
> 
>      def myfunction(arg1, arg2):
>      """
>      Normal docstring.
>      """ 
>      "@typehint: (str, int) -> bool"
>          return True 
> 

Actually that is idiotic. Much better is:

      def myfunction(arg1, arg2):
      """
      Normal docstring...
      @typehint: (str, int) -> bool
      """ 
          return True 

Why would I need to insert an extra docstring, if I'm already defining a 
parameter?
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to