You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
988 B
27 lines
988 B
From e63874ce75a74a1159390914045fe8e7955b24c4 Mon Sep 17 00:00:00 2001
|
|
From: Karthikeyan Singaravelan <tir.karthi@gmail.com>
|
|
Date: Fri, 7 May 2021 15:51:33 +0000
|
|
Subject: [PATCH] Fix decorate_class for Python 3.10 where staticmethod is
|
|
callable.
|
|
|
|
---
|
|
freezegun/api.py | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/freezegun/api.py b/freezegun/api.py
|
|
index cab9ebe..55a80c7 100644
|
|
--- a/freezegun/api.py
|
|
+++ b/freezegun/api.py
|
|
@@ -598,7 +598,10 @@ def tearDownClass(cls):
|
|
continue
|
|
seen.add(attr)
|
|
|
|
- if not callable(attr_value) or inspect.isclass(attr_value):
|
|
+ # staticmethods are callable from Python 3.10 . Hence skip them from decoration
|
|
+ if (not callable(attr_value)
|
|
+ or inspect.isclass(attr_value)
|
|
+ or isinstance(attr_value, staticmethod)):
|
|
continue
|
|
|
|
try:
|