Module to handle spacemaps

Check-in [213edd15a6]
anonymous

Check-in [213edd15a6]

Overview
Comment:__ne__ method
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: 213edd15a63937c667c621ebfd65723dc0759cfc8591f2d1c821fade4dab9c7a
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
314
315
316
317
318
319
320



321
322
323
324
325
326
327
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]: