From 73e5f4bc9c528f24bd1230f82a7d12b8e2f8a11d Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 13 Feb 2001 05:09:11 +0000 Subject: * io.c (rb_io_ctl): do not call ioctl/fcntl for f2, if f and f2 have same fileno. * eval.c (rb_load): raise LocaJumpError if unexpected local jumps appear during load. * ext/socket/socket.c (bsock_close_read): don't call rb_thread_fd_close(); it's supposed to be called by io_io_close(). * ext/socket/socket.c (bsock_close_read): do not modify f and f2. * ext/socket/socket.c (bsock_close_write): ditto. * ext/socket/socket.c (sock_new): avoid dup(2) on sockets. * parse.y (primary): preserve and clear in_single and in_def using stack to prevent nested method errors in singleton class bodies. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ToDo | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'ToDo') diff --git a/ToDo b/ToDo index bf0e8fd55..c0034dbb2 100644 --- a/ToDo +++ b/ToDo @@ -1,6 +1,5 @@ Language Spec. -- %q!\!! => "!" (not "\\!") * operator !! for rescue. ??? * objectify characters * ../... outside condition invokes operator method too. @@ -45,13 +44,13 @@ Hacking Interpreter * warn for inconsistent local variable usage (lv m and method m at the same time). * MicroRuby * Built-in Interactive Ruby. -* regex /\ba/ on "[a in HIRAGANA]a[a in HIRAGANA]" Standard Libraries - Module#define_method which takes a name and a body (block, proc or method). - Enume#inject - Array#fetch +- IO::for_fd * Enumerable#sort_by for Schwartzian transformation * String#scanf(?) * Object#fmt(?) @@ -67,7 +66,6 @@ Standard Libraries * Process::waitall [ruby-talk:4557] * synchronized method - synchronized{...}, synchronized :foo, :bar * move Time::times to Process. -* IO#for_fd in general * Array#&, Array#| to allow duplication. ??? * fork_and_kill_other_threads. * way to specify immortal (fork endurance) thread; -- cgit