Changes between Version 52 and Version 53 of NewbieMistakes


Ignore:
Timestamp:
May 20, 2013, 6:23:56 AM (11 years ago)
Author:
fatiherikli@…
Comment:

Changed count method as exists

Legend:

Unmodified
Added
Removed
Modified
  • NewbieMistakes

    v52 v53  
    275275}}}
    276276
    277 The way to do it is test for p.count:
     277The way to do it is test for p.exists:
    278278
    279279{{{
     
    283283>>> p
    284284[]
    285 >>> p.count() == 0
    286 True
     285>>> p.exists()
     286False
    287287}}}
    288288
Back to Top