Issue1253177

classification
Title: support execfile(java.io.InputStream) in __builtin__.java
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: fwierzbicki Nosy List: fwierzbicki, sghattu
Priority: low Keywords: patch

Created on 2005-08-06.14:35:18 by sghattu, last changed 2007-07-27.14:09:18 by fwierzbicki.

Files
File name Uploaded Description Edit Remove
__builtin__.java sghattu, 2005-08-06.14:35:18 Patch to __builtin__.java to support execfile with InputStream as an arg
Messages
msg2457 (view) Author: Satya Ghattu (sghattu) Date: 2005-08-06.14:35:18
This patch to org.python.code.__builtin__.java will
support calling execfile with a java.io.InputStream as
an argument. This patch makes it consistent with
PythonInterpreter since this call is already supported
on that class. 

Added 2 method on __builtin__.java
1) execfile(java.io.InputStream)
2) execfile(java.io.InputStream, String)

Thanks,
-satya
msg2458 (view) Author: Frank Wierzbicki (fwierzbicki) Date: 2006-05-24.17:45:03
Logged In: YES 
user_id=193969

If you could submit this as a diff instead of the whole
__builtin__ file, I could better evaluate it -- though it
looks like you used FileInputStream's instead of InputStreams.
msg2459 (view) Author: Frank Wierzbicki (fwierzbicki) Date: 2007-07-27.14:09:18
Doesn't look like this is going to get submitted as a patch (been a long time...) so I'm rejecting.
History
Date User Action Args
2005-08-06 14:35:18sghattucreate