[Python-Dev] Re: PEP 309 updated slightly (original) (raw)
Scott David Daniels Scott.Daniels at Acm.Org
Thu Sep 2 23:49:02 CEST 2004
- Previous message: [Python-Dev] Re: Alternative placeholder delimiters for PEP 292
- Next message: [Python-Dev] Re: PEP 309 updated slightly
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Alex Naanou wrote:
if isinstance(func, LCurry) or isinstance(func, RCurry): ^^ is better written as: if isinstance(func, (LCurry, RCurry)):
-- -- Scott David Daniels Scott.Daniels at Acm.Org
- Previous message: [Python-Dev] Re: Alternative placeholder delimiters for PEP 292
- Next message: [Python-Dev] Re: PEP 309 updated slightly
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]