diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-09-05 06:54:57 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-09-05 06:54:57 +0000 |
commit | 2e2786ccab636dd82de640bd771f2cc9fc20ab31 (patch) | |
tree | 0fc0c7632c71d722058b1f6c7ca513d57611086d /ToDo | |
parent | 393f665e33782d4a91813abe599b1b28d675127d (diff) | |
download | ruby-2e2786ccab636dd82de640bd771f2cc9fc20ab31.tar.gz |
* re.c (Init_Regexp): to_s to be alias to inspect.
* parse.y (yylex): should support 'keyword='.
* ruby.c (proc_options): should not adjust argc/argv if -e option
is supplied.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1727 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ToDo')
-rw-r--r-- | ToDo | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -50,7 +50,6 @@ Hacking Interpreter * Built-in Interactive Ruby. * trap every method invocation, which can be enabled by e.g. trap_call :method. * unify Errno exceptions of same errno, or new exception comparison scheme. -* signal list (Signal::trap, Signal::list??). * 2.times{|i| if i==0 then a = 15 else puts eval("a") end} should print nil. Standard Libraries @@ -63,7 +62,9 @@ Standard Libraries - Process::Status - File::lchown, File::lchmod; xxx - still need work for non existing platforms - move Time::times to Process. -* Enumerable#sort_by for Schwartzian transformation +- Enumerable#sort_by for Schwartzian transformation +- fork_and_kill_other_threads. +- signal list (Signal::trap, Signal::list). * String#scanf(?) * Object#fmt(?) * Integer#{bin,oct,hex,heX} @@ -77,17 +78,16 @@ Standard Libraries * introduce Boolean class; super of TrueClass, FalseClass * synchronized method - synchronized{...}, synchronized :foo, :bar * Array#&, Array#| to allow duplication. ??? -* fork_and_kill_other_threads. * way to specify immortal (fork endurance) thread; * or raise ForkException to every thread but fork caller. * Hash::new{default} or recommend Hash#fetch? * new user-defined marshal scheme. _dump(dumper), _load(restorer) -* warn, warning for Ruby level * hash etc. should handle self referenceing array/hash * move NameError under StandardError. * library to load per-user profile seeking .ruby_profile or ruby.ini file. -* warning framework +* warning framework (warn, warning for Ruby level) * marshal should not depend on sprintf/strtod (works bad for locale). +* ternary arg - a.pow(b,c) == a**b%c Extension Libraries |