why brackets & commas in func calls can't be ommited? (maybe it could be PEP?)

Duncan Booth duncan.booth at invalid.invalid
Wed Mar 21 12:17:11 EDT 2007


"dmitrey" <openopt at ukr.net> wrote:

> + it will not yield incompabilities with previous Python versions.

So how would you write:

    	func(-3)
      func(*param)

with your scheme? These already have an incompatible meaning:

   func -3
   func *param1



More information about the Python-list mailing list