Date: 30-8-2022 Co-Authored-By: Aditya <me@xditya.me> Co-Authored-By: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-Authored-By: CyrusXD <79554993+Ashutosh1478@users.noreply.github.com> Co-Authored-By: Danish <danish@ultroid.tech> Co-Authored-By: TechiError <error@notavailable.live> Co-Authored-By: Arnab Paryali <arnabxd@pm.me>
29 lines
835 B
Python
29 lines
835 B
Python
# Ultroid - UserBot
|
|
# Copyright (C) 2021-2022 TeamUltroid
|
|
#
|
|
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
|
|
# PLease read the GNU Affero General Public License in
|
|
# <https://github.com/TeamUltroid/pyUltroid/blob/main/LICENSE>.
|
|
|
|
# https://bugs.python.org/issue26789
|
|
# 'open' not defined has been fixed in Python3.10
|
|
# for other older versions, something need to be done.
|
|
|
|
|
|
def _fix_logging(handler):
|
|
handler._builtin_open = open
|
|
|
|
def _new_open(self):
|
|
open_func = self._builtin_open
|
|
return open_func(self.baseFilename, self.mode)
|
|
|
|
setattr(handler, "_open", _new_open)
|
|
|
|
|
|
def _ask_input():
|
|
# Ask for Input even on Vps and other platforms.
|
|
def new_input(*args, **kwargs):
|
|
raise EOFError("args=" + str(args) + ", kwargs=" + str(kwargs))
|
|
|
|
__builtins__["input"] = new_input
|