sys.__stdin__.read

Here are the examples of the python api sys.__stdin__.read taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

3 Examples 7

Example 1

Project: RIDE Source File: argumentparser.py
Function: read_from_stdin
    def _read_from_stdin(self):
        return decode_output(sys.__stdin__.read())

Example 2

Project: robotframework Source File: argumentparser.py
Function: read_from_stdin
    def _read_from_stdin(self):
        return console_decode(sys.__stdin__.read())

Example 3

Project: sublime-robot-plugin Source File: argumentparser.py
    def _read_argfile_from_stdin(self):
        content = sys.__stdin__.read()
        if sys.platform != 'cli':
            content = decode_output(content)
        return content