Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
29
venv/Lib/site-packages/jupyter_console/tests/writetofile.py
Normal file
29
venv/Lib/site-packages/jupyter_console/tests/writetofile.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
#-----------------------------------------------------------------------------
|
||||
# Copyright (C) 2012 The IPython Development Team
|
||||
#
|
||||
# Distributed under the terms of the BSD License. The full license is in
|
||||
# the file COPYING, distributed as part of this software.
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
"""
|
||||
Copy data from input file to output file for testing.
|
||||
|
||||
Command line usage:
|
||||
|
||||
python writetofile.py INPUT OUTPUT
|
||||
|
||||
Binary data from INPUT file is copied to OUTPUT file.
|
||||
If INPUT is '-', stdin is used.
|
||||
|
||||
"""
|
||||
|
||||
if __name__ == '__main__':
|
||||
import sys
|
||||
(inpath, outpath) = sys.argv[1:]
|
||||
|
||||
if inpath == '-':
|
||||
infile = sys.stdin.buffer
|
||||
else:
|
||||
infile = open(inpath, 'rb')
|
||||
|
||||
open(outpath, 'w+b').write(infile.read())
|
Loading…
Add table
Add a link
Reference in a new issue