patchpyro 2.0.4__tar.gz → 2.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: patchpyro
3
- Version: 2.0.4
3
+ Version: 2.1.0
4
4
  Summary: A modified pyromod by a.devh.in
5
5
  Home-page: https://github.com/adityaprasad502/patchpyro
6
6
  Author: Cezar H. & adityaprasad502
@@ -52,7 +52,7 @@ Example:
52
52
  from patchpyro import listen # or import patchpyro.listen
53
53
  from pyrogram import Client
54
54
 
55
- patchpyro.thank() # use this if ur linters/ide is removing patchpyro as unused import.
55
+ listen.thank() # use this if ur linters/ide is removing patchpyro as unused import.
56
56
 
57
57
  mybot = Client("mysession")
58
58
  ```
@@ -107,7 +107,9 @@ Just import it, it will automatically do the monkeypatch and you'll get these ne
107
107
 
108
108
 
109
109
  ### Copyright & License
110
- This project may include snippets of Pyrogram code
111
- - Pyrogram - Telegram MTProto API Client Library for Python. Copyright (C) 2017-2022 Dan <<https://github.com/delivrance>>
110
+ This project includes code from:
111
+ - **[kurimod](https://github.com/ohmyarthur/kurimod)**: Monkeypatcher logic and modern async compatibility fixes.
112
+ - **Pyrogram**: Telegram MTProto API Client Library for Python. Copyright (C) 2017-2022 Dan <<https://github.com/delivrance>>
113
+ - **pyromod**: Original conversation patch logic.
112
114
 
113
115
  Licensed under the terms of the [GNU Lesser General Public License v3 or later (LGPLv3+)](COPYING.lesser)
@@ -23,7 +23,7 @@ Example:
23
23
  from patchpyro import listen # or import patchpyro.listen
24
24
  from pyrogram import Client
25
25
 
26
- patchpyro.thank() # use this if ur linters/ide is removing patchpyro as unused import.
26
+ listen.thank() # use this if ur linters/ide is removing patchpyro as unused import.
27
27
 
28
28
  mybot = Client("mysession")
29
29
  ```
@@ -78,7 +78,9 @@ Just import it, it will automatically do the monkeypatch and you'll get these ne
78
78
 
79
79
 
80
80
  ### Copyright & License
81
- This project may include snippets of Pyrogram code
82
- - Pyrogram - Telegram MTProto API Client Library for Python. Copyright (C) 2017-2022 Dan <<https://github.com/delivrance>>
81
+ This project includes code from:
82
+ - **[kurimod](https://github.com/ohmyarthur/kurimod)**: Monkeypatcher logic and modern async compatibility fixes.
83
+ - **Pyrogram**: Telegram MTProto API Client Library for Python. Copyright (C) 2017-2022 Dan <<https://github.com/delivrance>>
84
+ - **pyromod**: Original conversation patch logic.
83
85
 
84
86
  Licensed under the terms of the [GNU Lesser General Public License v3 or later (LGPLv3+)](COPYING.lesser)
@@ -1,6 +1,5 @@
1
- """
2
- patchpyro - A monkeypatcher add-on for Pyrogram
3
- Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>
1
+ """patchpyro - A monkeypatcher add-on for Pyrogram
2
+ Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>.
4
3
 
5
4
  This file is part of patchpyro and was forked from usernein/pyromod.
6
5
 
@@ -18,4 +17,8 @@ You should have received a copy of the GNU General Public License
18
17
  along with patchpyro. If not, see <https://www.gnu.org/licenses/>.
19
18
  """
20
19
 
21
- from .listen import Chat, Client, MessageHandler, User
20
+
21
+ __version__ = "2.1.0"
22
+ # change in setup.py aswell
23
+
24
+ from . import listen
@@ -1,6 +1,5 @@
1
- """
2
- patchpyro - A monkeypatcher add-on for Pyrogram
3
- Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>
1
+ """patchpyro - A monkeypatcher add-on for Pyrogram
2
+ Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>.
4
3
 
5
4
  This file is part of patchpyro and was forked from usernein/pyromod.
6
5
 
@@ -18,10 +17,11 @@ You should have received a copy of the GNU General Public License
18
17
  along with patchpyro. If not, see <https://www.gnu.org/licenses/>.
19
18
  """
20
19
 
20
+ from .listen import Chat, Client, MessageHandler, User
21
+
21
22
 
22
- __version__ = "2.0.4"
23
- # change in setup.py aswell
23
+ def thank() -> None:
24
+ """A dummy function to prevent patchpyro.listen from being removed by formatters and linters."""
25
+ from patchpyro import __version__
24
26
 
25
- def thank():
26
- "A dummy function to prevent patchpyro from being removed by formatters and linters. It does nothing, just prints a message to the console to indicate that patchpyro is not an unused import."
27
- print("Thank you for using patchpyro! If you see this message. author: a.devh.in, version: " + __version__)
27
+ __all__ = ["Chat", "Client", "MessageHandler", "User", "thank"]
@@ -0,0 +1,186 @@
1
+ """patchpyro - A monkeypatcher add-on for Pyrogram
2
+ Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>.
3
+
4
+ This file is part of patchpyro and was forked from usernein/pyromod.
5
+ Additional patching logic was adapted from kurimod (C) Dias Arthur.
6
+
7
+ patchpyro is free software: you can redistribute it and/or modify
8
+ it under the terms of the GNU General Public License as published by
9
+ the Free Software Foundation, either version 3 of the License, or
10
+ (at your option) any later version.
11
+
12
+ patchpyro is distributed in the hope that it will be useful,
13
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ GNU General Public License for more details.
16
+
17
+ You should have received a copy of the GNU General Public License
18
+ along with patchpyro. If not, see <https://www.gnu.org/licenses/>.
19
+ """
20
+
21
+ import asyncio
22
+ import functools
23
+ from contextlib import suppress
24
+ from inspect import iscoroutinefunction
25
+
26
+ import pyrogram
27
+ import pyrogram.client
28
+ import pyrogram.handlers.message_handler
29
+ import pyrogram.types.user_and_chats.chat
30
+ import pyrogram.types.user_and_chats.user
31
+
32
+ from patchpyro.utils import patch_into, should_patch
33
+
34
+
35
+ class ListenerCanceled(Exception):
36
+ pass
37
+
38
+
39
+ pyrogram.errors.ListenerCanceled = ListenerCanceled
40
+
41
+
42
+ @patch_into(pyrogram.client.Client)
43
+ class Client:
44
+ @should_patch()
45
+ def __init__(self, *args, **kwargs) -> None:
46
+ self.listening = {}
47
+ self.using_mod = True
48
+
49
+ self.old__init__(*args, **kwargs)
50
+
51
+ @should_patch()
52
+ async def listen(
53
+ self,
54
+ chat_id: int | str,
55
+ filters: pyrogram.filters.Filter | None = None,
56
+ timeout: int | None = None,
57
+ ) -> pyrogram.types.Message:
58
+ if not isinstance(chat_id, int):
59
+ chat = await self.get_chat(chat_id)
60
+ chat_id = chat.id
61
+
62
+ # Cancel existing listener in this chat if any
63
+ self.cancel_listener(chat_id)
64
+
65
+ loop = asyncio.get_running_loop()
66
+ future = loop.create_future()
67
+ future.add_done_callback(functools.partial(self.clear_listener, chat_id))
68
+ self.listening[chat_id] = {"future": future, "filters": filters}
69
+
70
+ return await asyncio.wait_for(future, timeout)
71
+
72
+ @should_patch()
73
+ async def ask(
74
+ self,
75
+ chat_id: int | str,
76
+ text: str,
77
+ filters: pyrogram.filters.Filter | None = None,
78
+ timeout: int | None = None,
79
+ *args,
80
+ **kwargs,
81
+ ) -> pyrogram.types.Message:
82
+ request = await self.send_message(chat_id, text, *args, **kwargs)
83
+ response = await self.listen(chat_id, filters, timeout)
84
+ response.request = request
85
+ return response
86
+
87
+ @should_patch()
88
+ async def asker(
89
+ self,
90
+ chat_id: int | str,
91
+ filters: pyrogram.filters.Filter | None = None,
92
+ timeout: int = 119,
93
+ ) -> pyrogram.types.Message | None:
94
+ try:
95
+ return await self.listen(chat_id, filters, timeout)
96
+ except asyncio.TimeoutError:
97
+ return None
98
+
99
+ @should_patch()
100
+ def clear_listener(self, chat_id: int, future: asyncio.Future) -> None:
101
+ with suppress(KeyError):
102
+ if (
103
+ chat_id in self.listening
104
+ and future == self.listening[chat_id]["future"]
105
+ ):
106
+ self.listening.pop(chat_id, None)
107
+
108
+ @should_patch()
109
+ def cancel_listener(self, chat_id: int) -> None:
110
+ listener = self.listening.get(chat_id)
111
+ if not listener or listener["future"].done():
112
+ return
113
+
114
+ if not listener["future"].done():
115
+ listener["future"].set_exception(ListenerCanceled())
116
+ self.clear_listener(chat_id, listener["future"])
117
+
118
+
119
+ @patch_into(pyrogram.handlers.message_handler.MessageHandler)
120
+ class MessageHandler:
121
+ @should_patch()
122
+ def __init__(self, callback: callable, filters=None) -> None:
123
+ self.user_callback = callback
124
+ self.old__init__(self.resolve_listener, filters)
125
+
126
+ @should_patch()
127
+ async def resolve_listener(self, client: "pyrogram.Client", message: pyrogram.types.Message, *args) -> None:
128
+ listener = client.listening.get(message.chat.id)
129
+ if listener and not listener["future"].done():
130
+ listener["future"].set_result(message)
131
+ raise pyrogram.StopPropagation
132
+
133
+ if listener and listener["future"].done():
134
+ client.clear_listener(message.chat.id, listener["future"])
135
+
136
+ await self.user_callback(client, message, *args)
137
+
138
+ @should_patch()
139
+ async def check(self, client: "pyrogram.Client", update: pyrogram.types.Message):
140
+ listener = client.listening.get(update.chat.id)
141
+
142
+ if listener and not listener["future"].done():
143
+ filters = listener["filters"]
144
+ if callable(filters):
145
+ if iscoroutinefunction(filters.__call__):
146
+ return await filters(client, update)
147
+ loop = asyncio.get_running_loop()
148
+ return await loop.run_in_executor(None, filters, client, update)
149
+ return True
150
+
151
+ if callable(self.filters):
152
+ if iscoroutinefunction(self.filters.__call__):
153
+ return await self.filters(client, update)
154
+ loop = asyncio.get_running_loop()
155
+ return await loop.run_in_executor(None, self.filters, client, update)
156
+ return True
157
+
158
+
159
+ @patch_into(pyrogram.types.user_and_chats.chat.Chat)
160
+ class Chat(pyrogram.types.Chat):
161
+ @should_patch()
162
+ async def listen(self, *args, **kwargs) -> pyrogram.types.Message:
163
+ return await self._client.listen(self.id, *args, **kwargs)
164
+
165
+ @should_patch()
166
+ async def ask(self, *args, **kwargs) -> pyrogram.types.Message:
167
+ return await self._client.ask(self.id, *args, **kwargs)
168
+
169
+ @should_patch()
170
+ def cancel_listener(self) -> None:
171
+ return self._client.cancel_listener(self.id)
172
+
173
+
174
+ @patch_into(pyrogram.types.user_and_chats.user.User)
175
+ class User(pyrogram.types.User):
176
+ @should_patch()
177
+ async def listen(self, *args, **kwargs) -> pyrogram.types.Message:
178
+ return await self._client.listen(self.id, *args, **kwargs)
179
+
180
+ @should_patch()
181
+ async def ask(self, *args, **kwargs) -> pyrogram.types.Message:
182
+ return await self._client.ask(self.id, *args, **kwargs)
183
+
184
+ @should_patch()
185
+ def cancel_listener(self) -> None:
186
+ return self._client.cancel_listener(self.id)
@@ -1,6 +1,5 @@
1
- """
2
- patchpyro - A monkeypatcher add-on for Pyrogram
3
- Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>
1
+ """patchpyro - A monkeypatcher add-on for Pyrogram
2
+ Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>.
4
3
 
5
4
  This file is part of patchpyro and was forked from usernein/pyromod.
6
5
 
@@ -18,4 +17,6 @@ You should have received a copy of the GNU General Public License
18
17
  along with patchpyro. If not, see <https://www.gnu.org/licenses/>.
19
18
  """
20
19
 
21
- from .utils import patch, patchable
20
+ from .utils import patch, patch_into, patchable, should_patch
21
+
22
+ __all__ = ["patch", "patch_into", "patchable", "should_patch"]
@@ -0,0 +1,90 @@
1
+ """patchpyro - A monkeypatcher add-on for Pyrogram
2
+ Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>.
3
+
4
+ This file is part of patchpyro and was forked from usernein/pyromod.
5
+ Additional patching logic was adapted from kurimod (C) Dias Arthur.
6
+
7
+ patchpyro is free software: you can redistribute it and/or modify
8
+ it under the terms of the GNU General Public License as published by
9
+ the Free Software Foundation, either version 3 of the License, or
10
+ (at your option) any later version.
11
+
12
+ patchpyro is distributed in the hope that it will be useful,
13
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ GNU General Public License for more details.
16
+
17
+ You should have received a copy of the GNU General Public License
18
+ along with patchpyro. If not, see <https://www.gnu.org/licenses/>.
19
+ """
20
+ from collections.abc import Callable
21
+ from contextlib import asynccontextmanager, contextmanager
22
+ from inspect import iscoroutinefunction
23
+ from typing import TypeVar
24
+
25
+ from pyrogram.sync import async_to_sync
26
+
27
+ T = TypeVar("T")
28
+
29
+
30
+ def patch(target_class):
31
+ def is_patchable(item):
32
+ func = item[1]
33
+ return getattr(func, "should_patch", False) or getattr(func, "patchable", False)
34
+
35
+ def wrapper(container: type[T]) -> T:
36
+ for name, func in filter(is_patchable, container.__dict__.items()):
37
+ old = getattr(target_class, name, None)
38
+ if old is not None:
39
+ setattr(target_class, "old" + name, old)
40
+
41
+ tempConf = {
42
+ i: getattr(func, i, False)
43
+ for i in ["is_property", "is_static", "is_context"]
44
+ }
45
+
46
+ if not iscoroutinefunction(func):
47
+ async_to_sync(container, name)
48
+ func = getattr(container, name)
49
+
50
+ for tKey, tValue in tempConf.items():
51
+ setattr(func, tKey, tValue)
52
+
53
+ if func.is_property:
54
+ func = property(func)
55
+ elif func.is_static:
56
+ func = staticmethod(func)
57
+ elif func.is_context:
58
+ if iscoroutinefunction(func.__call__):
59
+ func = asynccontextmanager(func)
60
+ else:
61
+ func = contextmanager(func)
62
+
63
+ setattr(target_class, name, func)
64
+ return container
65
+
66
+ return wrapper
67
+
68
+
69
+ def patchable(
70
+ func: Callable | None = None,
71
+ *,
72
+ is_property: bool = False,
73
+ is_static: bool = False,
74
+ is_context: bool = False,
75
+ ) -> Callable:
76
+ def wrapper(f: Callable) -> Callable:
77
+ f.should_patch = True
78
+ f.patchable = True
79
+ f.is_property = is_property
80
+ f.is_static = is_static
81
+ f.is_context = is_context
82
+ return f
83
+
84
+ if func is not None:
85
+ return wrapper(func)
86
+ return wrapper
87
+
88
+
89
+ patch_into = patch
90
+ should_patch = patchable
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: patchpyro
3
- Version: 2.0.4
3
+ Version: 2.1.0
4
4
  Summary: A modified pyromod by a.devh.in
5
5
  Home-page: https://github.com/adityaprasad502/patchpyro
6
6
  Author: Cezar H. & adityaprasad502
@@ -52,7 +52,7 @@ Example:
52
52
  from patchpyro import listen # or import patchpyro.listen
53
53
  from pyrogram import Client
54
54
 
55
- patchpyro.thank() # use this if ur linters/ide is removing patchpyro as unused import.
55
+ listen.thank() # use this if ur linters/ide is removing patchpyro as unused import.
56
56
 
57
57
  mybot = Client("mysession")
58
58
  ```
@@ -107,7 +107,9 @@ Just import it, it will automatically do the monkeypatch and you'll get these ne
107
107
 
108
108
 
109
109
  ### Copyright & License
110
- This project may include snippets of Pyrogram code
111
- - Pyrogram - Telegram MTProto API Client Library for Python. Copyright (C) 2017-2022 Dan <<https://github.com/delivrance>>
110
+ This project includes code from:
111
+ - **[kurimod](https://github.com/ohmyarthur/kurimod)**: Monkeypatcher logic and modern async compatibility fixes.
112
+ - **Pyrogram**: Telegram MTProto API Client Library for Python. Copyright (C) 2017-2022 Dan <<https://github.com/delivrance>>
113
+ - **pyromod**: Original conversation patch logic.
112
114
 
113
115
  Licensed under the terms of the [GNU Lesser General Public License v3 or later (LGPLv3+)](COPYING.lesser)
@@ -2,7 +2,7 @@ import re
2
2
 
3
3
  import setuptools
4
4
 
5
- with open("README.md", "r") as fp:
5
+ with open("README.md") as fp:
6
6
  long_description = fp.read()
7
7
 
8
8
  requirements = ["kurigram>=2.0.69"]
@@ -1,151 +0,0 @@
1
- """
2
- patchpyro - A monkeypatcher add-on for Pyrogram
3
- Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>
4
-
5
- This file is part of patchpyro and was forked from usernein/pyromod.
6
-
7
- patchpyro is free software: you can redistribute it and/or modify
8
- it under the terms of the GNU General Public License as published by
9
- the Free Software Foundation, either version 3 of the License, or
10
- (at your option) any later version.
11
-
12
- patchpyro is distributed in the hope that it will be useful,
13
- but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- GNU General Public License for more details.
16
-
17
- You should have received a copy of the GNU General Public License
18
- along with patchpyro. If not, see <https://www.gnu.org/licenses/>.
19
- """
20
-
21
- import asyncio
22
- import functools
23
- from contextlib import suppress
24
-
25
- import pyrogram
26
-
27
- from ..utils import patch, patchable
28
-
29
- loop = asyncio.get_event_loop()
30
-
31
-
32
- class ListenerCanceled(Exception):
33
- pass
34
-
35
-
36
- pyrogram.errors.ListenerCanceled = ListenerCanceled
37
-
38
-
39
- @patch(pyrogram.client.Client)
40
- class Client:
41
- @patchable
42
- def __init__(self, *args, **kwargs):
43
- self.listening = {}
44
- self.using_mod = True
45
-
46
- self.old__init__(*args, **kwargs)
47
-
48
- @patchable
49
- async def listen(self, chat_id, filters=None, timeout=None):
50
- if type(chat_id) != int:
51
- chat = await self.get_chat(chat_id)
52
- chat_id = chat.id
53
-
54
- future = loop.create_future()
55
- future.add_done_callback(functools.partial(self.clear_listener, chat_id))
56
- self.listening.update({chat_id: {"future": future, "filters": filters}})
57
- return await asyncio.wait_for(future, timeout)
58
-
59
- @patchable
60
- async def ask(self, chat_id, text, filters=None, timeout=None, *args, **kwargs):
61
- request = await self.send_message(chat_id, text, *args, **kwargs)
62
- response = await self.listen(chat_id, filters, timeout)
63
- response.request = request
64
- return response
65
-
66
- @patchable
67
- async def asker(self, chat_id, filters=None, timeout=119):
68
- try:
69
- response = await self.listen(chat_id, filters, timeout)
70
- except asyncio.TimeoutError:
71
- response = None
72
- return response
73
-
74
- @patchable
75
- def clear_listener(self, chat_id, future):
76
- with suppress(KeyError):
77
- if (
78
- chat_id in self.listening
79
- and future == self.listening[chat_id]["future"]
80
- ):
81
- self.listening.pop(chat_id, None)
82
-
83
- @patchable
84
- def cancel_listener(self, chat_id):
85
- listener = self.listening.get(chat_id)
86
- if not listener or listener["future"].done():
87
- return
88
-
89
- listener["future"].set_exception(ListenerCanceled())
90
- self.clear_listener(chat_id, listener["future"])
91
-
92
-
93
- @patch(pyrogram.handlers.message_handler.MessageHandler)
94
- class MessageHandler:
95
- @patchable
96
- def __init__(self, callback: callable, filters=None):
97
- self.user_callback = callback
98
- self.old__init__(self.resolve_listener, filters)
99
-
100
- @patchable
101
- async def resolve_listener(self, client, message, *args):
102
- listener = client.listening.get(message.chat.id)
103
- if listener and not listener["future"].done():
104
- listener["future"].set_result(message)
105
- else:
106
- if listener and listener["future"].done():
107
- client.clear_listener(message.chat.id, listener["future"])
108
- await self.user_callback(client, message, *args)
109
-
110
- @patchable
111
- async def check(self, client, update):
112
- listener = client.listening.get(update.chat.id)
113
-
114
- if listener and not listener["future"].done():
115
- return (
116
- await listener["filters"](client, update)
117
- if callable(listener["filters"])
118
- else True
119
- )
120
-
121
- return await self.filters(client, update) if callable(self.filters) else True
122
-
123
-
124
- @patch(pyrogram.types.user_and_chats.chat.Chat)
125
- class Chat(pyrogram.types.Chat):
126
- @patchable
127
- def listen(self, *args, **kwargs):
128
- return self._client.listen(self.id, *args, **kwargs)
129
-
130
- @patchable
131
- def ask(self, *args, **kwargs):
132
- return self._client.ask(self.id, *args, **kwargs)
133
-
134
- @patchable
135
- def cancel_listener(self):
136
- return self._client.cancel_listener(self.id)
137
-
138
-
139
- @patch(pyrogram.types.user_and_chats.user.User)
140
- class User(pyrogram.types.User):
141
- @patchable
142
- def listen(self, *args, **kwargs):
143
- return self._client.listen(self.id, *args, **kwargs)
144
-
145
- @patchable
146
- def ask(self, *args, **kwargs):
147
- return self._client.ask(self.id, *args, **kwargs)
148
-
149
- @patchable
150
- def cancel_listener(self):
151
- return self._client.cancel_listener(self.id)
@@ -1,38 +0,0 @@
1
- """
2
- patchpyro - A monkeypatcher add-on for Pyrogram
3
- Copyright (C) 2026 Aditya Prasad S <https://github.com/adityaprasad502>
4
-
5
- This file is part of patchpyro and was forked from usernein/pyromod.
6
-
7
- patchpyro is free software: you can redistribute it and/or modify
8
- it under the terms of the GNU General Public License as published by
9
- the Free Software Foundation, either version 3 of the License, or
10
- (at your option) any later version.
11
-
12
- patchpyro is distributed in the hope that it will be useful,
13
- but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- GNU General Public License for more details.
16
-
17
- You should have received a copy of the GNU General Public License
18
- along with patchpyro. If not, see <https://www.gnu.org/licenses/>.
19
- """
20
-
21
-
22
- def patch(obj):
23
- def is_patchable(item):
24
- return getattr(item[1], "patchable", False)
25
-
26
- def wrapper(container):
27
- for name, func in filter(is_patchable, container.__dict__.items()):
28
- old = getattr(obj, name, None)
29
- setattr(obj, f"old{name}", old)
30
- setattr(obj, name, func)
31
- return container
32
-
33
- return wrapper
34
-
35
-
36
- def patchable(func):
37
- func.patchable = True
38
- return func
File without changes
File without changes
File without changes
File without changes