This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import imp | |
class Test: | |
pass | |
class MyLoader: | |
def load_module(self, fullname): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
COPY install-python.sh / | |
RUN /install-python.sh | |
RUN pip install manhole | |
ENV PYTHONMANHOLE 'daemon_connection=True' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.04 | |
RUN apt-get update | |
RUN apt-get install -y python3 python3-dev python3-pip | |
RUN pip3 install -U pip setuptools | |
RUN pip3 install grpcio==1.8.1 |
OlderNewer