HomeSort by relevance Sort by last modified time
    Searched refs:EOFError (Results 201 - 225 of 372) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/python/cpython2/Lib/lib2to3/tests/data/
py2_test_grammar.py 635 except EOFError: pass
641 except (EOFError, TypeError, ZeroDivisionError): pass
643 except (EOFError, TypeError, ZeroDivisionError), msg: pass
py3_test_grammar.py 579 except EOFError: pass
585 except (EOFError, TypeError, ZeroDivisionError): pass
587 except (EOFError, TypeError, ZeroDivisionError) as msg: pass
  /external/python/cpython2/Lib/test/
test_grammar.py 659 except EOFError: pass
665 except (EOFError, TypeError, ZeroDivisionError): pass
667 except (EOFError, TypeError, ZeroDivisionError), msg: pass
    [all...]
  /external/python/cpython2/Tools/bgen/bgen/
scantools.py 473 raise EOFError
498 except EOFError: break
532 except EOFError:
  /external/python/cpython3/Lib/lib2to3/tests/data/
py2_test_grammar.py 635 except EOFError: pass
641 except (EOFError, TypeError, ZeroDivisionError): pass
643 except (EOFError, TypeError, ZeroDivisionError), msg: pass
py3_test_grammar.py 579 except EOFError: pass
585 except (EOFError, TypeError, ZeroDivisionError): pass
587 except (EOFError, TypeError, ZeroDivisionError) as msg: pass
  /external/python/cpython3/Lib/test/
test_gzip.py 485 self.assertRaises(EOFError, f.read)
488 self.assertRaises(EOFError, f.read, 1)
492 self.assertRaises(EOFError, f.read, 1)
test_bz2.py 619 self.assertRaises(EOFError, f.read)
622 self.assertRaises(EOFError, f.read, 1)
626 self.assertRaises(EOFError, f.read, 1)
711 self.assertRaises(EOFError, bz2d.decompress, b"anything")
712 self.assertRaises(EOFError, bz2d.decompress, b"")
    [all...]
test_lzma.py 59 self.assertRaises(EOFError, lzd.decompress, b"quux")
75 self.assertRaises(EOFError, lzd.decompress, b"nyan")
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ftplib.py 70 all_errors = (Error, IOError, EOFError)
181 # Raise EOFError if the connection is closed
186 if not line: raise EOFError
766 all_errors = (Error, IOError, EOFError, ssl.SSLError)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_grammar.py 653 except EOFError: pass
659 except (EOFError, TypeError, ZeroDivisionError): pass
661 except (EOFError, TypeError, ZeroDivisionError), msg: pass
  /prebuilts/gdb/linux-x86/lib/python2.7/
ftplib.py 70 all_errors = (Error, IOError, EOFError)
181 # Raise EOFError if the connection is closed
186 if not line: raise EOFError
766 all_errors = (Error, IOError, EOFError, ssl.SSLError)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_grammar.py 653 except EOFError: pass
659 except (EOFError, TypeError, ZeroDivisionError): pass
661 except (EOFError, TypeError, ZeroDivisionError), msg: pass
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ftplib.py 70 all_errors = (Error, IOError, EOFError)
181 # Raise EOFError if the connection is closed
186 if not line: raise EOFError
766 all_errors = (Error, IOError, EOFError, ssl.SSLError)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py2_test_grammar.py 635 except EOFError: pass
641 except (EOFError, TypeError, ZeroDivisionError): pass
643 except (EOFError, TypeError, ZeroDivisionError), msg: pass
py3_test_grammar.py 579 except EOFError: pass
585 except (EOFError, TypeError, ZeroDivisionError): pass
587 except (EOFError, TypeError, ZeroDivisionError) as msg: pass
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_grammar.py 653 except EOFError: pass
659 except (EOFError, TypeError, ZeroDivisionError): pass
661 except (EOFError, TypeError, ZeroDivisionError), msg: pass
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ftplib.py 70 all_errors = (Error, IOError, EOFError)
181 # Raise EOFError if the connection is closed
186 if not line: raise EOFError
766 all_errors = (Error, IOError, EOFError, ssl.SSLError)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py2_test_grammar.py 635 except EOFError: pass
641 except (EOFError, TypeError, ZeroDivisionError): pass
643 except (EOFError, TypeError, ZeroDivisionError), msg: pass
py3_test_grammar.py 579 except EOFError: pass
585 except (EOFError, TypeError, ZeroDivisionError): pass
587 except (EOFError, TypeError, ZeroDivisionError) as msg: pass
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_grammar.py 653 except EOFError: pass
659 except (EOFError, TypeError, ZeroDivisionError): pass
661 except (EOFError, TypeError, ZeroDivisionError), msg: pass
  /external/python/cpython3/Lib/importlib/
_bootstrap_external.py 437 found to be stale. EOFError is raised when the data is found to be
459 raise EOFError(message)
463 raise EOFError(message)
772 except (ImportError, EOFError):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
cmd.py 131 except EOFError:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
nntplib.py 202 Raise EOFError if the connection is closed."""
206 if not line: raise EOFError
wave.py 139 except EOFError:

Completed in 1591 milliseconds

1 2 3 4 5 6 7 891011>>