Message10115

Author zyasoft
Recipients akalinovski, zyasoft
Date 2015-06-10.22:31:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433975466.46.0.507715238206.issue2368@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, you can readily monkeypatch to workaround for the time being:

$ jython27
Jython 2.7.0 (default:9987c746f838, Apr 29 2015, 02:25:11)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.8.0_45
Type "help", "copyright", "credits" or "license" for more information.
>>> import _io
>>> import _jyio
>>> dir(_jyio)
['BlockingIOError', 'BufferedRWPair', 'BufferedRandom', 'BufferedReader', 'BufferedWriter', 'BytesIO', 'DEFAULT_BUFFER_SIZE', 'EINTR', 'FileIO', 'IncrementalNewlineDecoder', 'Lock', 'StringIO', 'TextIOWrapper', 'UnsupportedOperation', '_BufferedIOBase', '_BufferedIOMixin', '_IOBase', '_RawIOBase', '_TextIOBase', '__builtins__', '__doc__', '__file__', '__metaclass__', '__name__', '__package__', '_check_buffered_bytes', '_check_decoded_chars', '_io', 'abc', 'array', 'codecs', 'errno', 'open', 'os', 'print_function', 'unicode_literals', 'warnings']
>>> _io.BlockingIOError = _jyio.BlockingIOError
>>> dir(_io)
['BlockingIOError', 'DEFAULT_BUFFER_SIZE', 'FileIO', 'UnsupportedOperation', '_IOBase', '_RawIOBase', '__class__', '__copy__', '__deepcopy__', '__delattr__', '__doc__', '__doc__open', '__ensure_finalizer__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__name__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__str__', '__subclasshook__', '__unicode__', 'class', 'equals', 'getClass', 'hashCode', 'notify', 'notifyAll', 'open', 'toString', 'wait']

Hope that helps! So the change is really simple, it's just that we have a release schedule we need to go through.
History
Date User Action Args
2015-06-10 22:31:06zyasoftsetmessageid: <1433975466.46.0.507715238206.issue2368@psf.upfronthosting.co.za>
2015-06-10 22:31:06zyasoftsetrecipients: + zyasoft, akalinovski
2015-06-10 22:31:06zyasoftlinkissue2368 messages
2015-06-10 22:31:05zyasoftcreate