Changes between Version 52 and Version 53 of NewbieMistakes
- Timestamp:
- May 20, 2013, 6:23:56 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewbieMistakes
v52 v53 275 275 }}} 276 276 277 The way to do it is test for p. count:277 The way to do it is test for p.exists: 278 278 279 279 {{{ … … 283 283 >>> p 284 284 [] 285 >>> p. count() == 0286 True285 >>> p.exists() 286 False 287 287 }}} 288 288