From 33d5fdaa6a219b9b8dd9757936397eb3a4ef926c Mon Sep 17 00:00:00 2001 From: mame Date: Tue, 29 Jul 2008 14:38:44 +0000 Subject: * io.c (io_ungetc): raise NotImplementedError when ungetc is called against dummy encoding IO. * io.c (rb_io_getline_1): ditto when gets with delimiter is called. * io.c (io_getc): ditto when getc is called. * test/ruby/test_io_m17n.rb (test_terminator_stateful_conversion, test_getc_stateful_conversion, test_ungetc_stateful_conversion): these tests should raise NotImplementedError. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 33ecbfd39..ab91451cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +Tue Jul 29 23:37:37 2008 Yusuke Endoh + + * io.c (io_ungetc): raise NotImplementedError when ungetc is called + against dummy encoding IO. + + * io.c (rb_io_getline_1): ditto when gets with delimiter is called. + + * io.c (io_getc): ditto when getc is called. + + * test/ruby/test_io_m17n.rb (test_terminator_stateful_conversion, + test_getc_stateful_conversion, test_ungetc_stateful_conversion): + these tests should raise NotImplementedError. + Tue Jul 29 22:55:34 2008 Yusuke Endoh * test/ruby/test_io.rb (pipe): run reader thread and writer thread. -- cgit