Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #35271

Re: Pass and return

Date 2012-12-21 00:45 -0500
From Mitya Sirenef <msirenef@lightbird.net>
Subject Re: Pass and return
References <02b7f61c-6eef-4301-a0bc-6cf8473b6fa1@googlegroups.com>
Newsgroups comp.lang.python
Message-ID <mailman.1137.1356068710.29569.python-list@python.org> (permalink)

Show all headers | View raw


On 12/21/2012 12:23 AM, iMath wrote:
> Pass and return
> Are these two functions the same ?
>
> def test():
> 	return
>   
> def test():
> 	pass


 From the point of style, of course, the latter is
much better because that's the idiomatic way
to define a no-op function. With a return, it
looks like you might have forgotten to add the
value to return or deleted it by mistake.

  -m

-- 
Lark's Tongue Guide to Python: http://lightbird.net/larks/

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Pass and return iMath <redstone-cold@163.com> - 2012-12-20 21:23 -0800
  Re: Pass and return Mitya Sirenef <msirenef@lightbird.net> - 2012-12-21 00:40 -0500
  Re: Pass and return Mitya Sirenef <msirenef@lightbird.net> - 2012-12-21 00:45 -0500
    Re: Pass and return Duncan Booth <duncan.booth@invalid.invalid> - 2012-12-21 08:52 +0000
      Re: Pass and return Mitya Sirenef <msirenef@lightbird.net> - 2012-12-21 12:15 -0500
  Re: Pass and return Chris Angelico <rosuav@gmail.com> - 2012-12-21 17:19 +1100
  Re: Pass and return Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-12-21 08:27 +0000
  Re: Pass and return iMath <redstone-cold@163.com> - 2012-12-22 07:11 -0800

csiph-web