Overview
| Comment: | __ne__ method |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
213edd15a63937c667c621ebfd65723d |
| User & Date: | c.kworr@f767742a-4495-3fff-757e-17af2457c78a on 2011-12-21 09:18:34.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2012-07-03
| ||
| 10:22 | svn:eol-style native check-in: 2680e99d24 user: c.kworr@gmail.com@f767742a-4495-3fff-757e-17af2457c78a tags: master, trunk | |
|
2011-12-21
| ||
| 09:18 | __ne__ method check-in: 213edd15a6 user: c.kworr@f767742a-4495-3fff-757e-17af2457c78a tags: master, trunk | |
|
2011-12-19
| ||
| 09:27 | python 2.7 support, simpler conditionals check-in: 886158fbf4 user: c.kworr@f767742a-4495-3fff-757e-17af2457c78a tags: master, trunk | |
Changes
Modified spacemap.py
from [292e80c547]
to [50b39ef35f].
| ︙ | ︙ | |||
314 315 316 317 318 319 320 321 322 323 324 325 326 327 | if this == [None, None] and that == [None, None]: result = True break self.clear() other.clear() return(result) def end(self): '''Returns last known point.''' end = None self.rewind() while True: this = self.pop() if this == [None, None]: | > > > | 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | if this == [None, None] and that == [None, None]: result = True break self.clear() other.clear() return(result) def __ne__(self, other): return(not self == other) def end(self): '''Returns last known point.''' end = None self.rewind() while True: this = self.pop() if this == [None, None]: |
| ︙ | ︙ |