##// END OF EJS Templates
util: add __ne__ to filestat class for consistency...
FUJIWARA Katsunori -
r29298:82f6193f default
parent child Browse files
Show More
@@ -1455,6 +1455,9 b' class filestat(object):'
1455 except AttributeError:
1455 except AttributeError:
1456 return False
1456 return False
1457
1457
1458 def __ne__(self, other):
1459 return not self == other
1460
1458 class atomictempfile(object):
1461 class atomictempfile(object):
1459 '''writable file object that atomically updates a file
1462 '''writable file object that atomically updates a file
1460
1463
General Comments 0
You need to be logged in to leave comments. Login now