From 80e39a8fc7de105510cbbdca8507f2a4b8c9e01d Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sat, 22 Jun 2024 21:19:36 -0400 Subject: New upstream version 1.27.1. --- gallery_dl/util.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'gallery_dl/util.py') diff --git a/gallery_dl/util.py b/gallery_dl/util.py index 861ec7e..e76ddf3 100644 --- a/gallery_dl/util.py +++ b/gallery_dl/util.py @@ -106,12 +106,12 @@ def identity(x): return x -def true(_): +def true(_, __=None): """Always returns True""" return True -def false(_): +def false(_, __=None): """Always returns False""" return False @@ -540,10 +540,21 @@ class CustomNone(): def __bool__(): return False + __lt__ = true + __le__ = true + __eq__ = false + __ne__ = true + __gt__ = false + __ge__ = false + @staticmethod def __len__(): return 0 + @staticmethod + def __hash__(): + return 0 + @staticmethod def __format__(_): return "None" -- cgit v1.2.3