summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * test/csv/test_csv.rb: run on test/unit original layer.nahi2003-09-042-42/+32
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4489 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Bug fix: [ruby-dev:21314] [BigDecimal] [BUG] Segmentation faultshigek2003-09-041-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/syck/token.c: headerless documents with root-level spacing nowwhy2003-09-032-546/+567
| | | | | | | honored. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * MANIFEST: add test/* files which are added in the previous commit.nahi2003-09-031-0/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4486 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2003-09-03eban2003-09-031-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test: add test directory. Test::Unit aware testcases and needed files shouldnahi2003-09-034-0/+1521
| | | | | | | | | | | | | be located in this directory. dir/file name convention; test/{module_name}/test_{testcase_name}.rb test/{module_name}/{needed_files} someday, someone will write testrunner which searches test_*.rb and run testcases automatically * test/csv/*: add testcase for lib/csv.rb. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4484 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Bug in mult method fixed.shigek2003-09-031-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4483 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/openssl/lib/net/protocols.rb (SSLIO#ssl_connect): warninggotoyuzo2003-09-022-2/+11
| | | | | | | for skipping server verification. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4482 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/extconf.rb: check s6_addr8 in in6_addr (Tru64 UNIX).matz2003-09-024-2/+38
| | | | | | | | | | | | the patch is submitted by nmu <nmu@users.sourceforge.jp>. * ext/socket/getaddrinfo.c (getaddrinfo): should use in6_addr8 on some platforms. * ext/socket/getnameinfo.c (getnameinfo): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4481 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tcltklib/tcltklib.c (ip_invoke): fixed bug on passing a exceptionnagai2003-09-029-139/+410
| | | | | | | | * ext/tk/lib/{tk.rb, tkcanvas.rb, tkfont.rb, tktext.rb} : bug fix and improvement of font control git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_eval): should not handle exceptions within rescuenobu2003-09-022-1/+10
| | | | | | | argument. [ruby-talk:80804] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4479 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2003-09-02eban2003-09-011-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4478 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * re.c (rb_memsearch): fix overrun. [ruby-talk:80759]nobu2003-09-012-10/+17
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4477 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/iconv/iconv.c (map_charset): use lower case keys.nobu2003-09-013-12/+57
| | | | | | | | | | | | | | | | | * ext/iconv/iconv.c (iconv_fail): just yield error and return the result if a block is given. * ext/iconv/iconv.c (iconv_convert): yield error and append the result if a block is given. * ext/iconv/charset_alias.rb (charset_alias): optional third argument. * ext/iconv/charset_alias.rb (charset_alias): use CP932 instead of SHIFT_JIS on cygwin. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4476 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_eval): make tail recursion in ELSE clause ofnobu2003-09-012-2/+7
| | | | | | | RESCUE a jump. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4475 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (aref_args): forgot to call NEW_SPLAT(). reported bymatz2003-09-014-2/+11
| | | | | | | | | | Dave Butcher. * eval.c (Init_Thread): protect thgroup_default. suggested by Guy Decoux in [ruby-talk:80623] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4474 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2003-09-01nobu2003-09-011-4/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_thread_switch): add RESTORE_EXIT; exit by anothernobu2003-09-012-18/+41
| | | | | | | | | | | thread termination. * eval.c (rb_thread_start_0): should not error_print() within terminated thread, because $stderr used by it might be overriden now. [ruby-dev:21280] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * process.c (p_gid_sw_ensure): return VALUE.eban2003-08-312-2/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (TAG_DST()): take no argument.eban2003-08-312-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4470 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * process.c (p_gid_sw_ensure): lack of function typenagai2003-08-312-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4469 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/http.rb: cosmetic improvements to documentationgsinclair2003-08-312-316/+318
| | | | | | | * lib/net/imap.rb: ditto git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4468 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2003-08-31eban2003-08-311-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4467 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * MANIFEST: add lib/optparse/version.rb.eban2003-08-311-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/optparse.rb: --version takes an optional argument; "all" or a list of ↵nobu2003-08-313-4/+59
| | | | | | package names. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4465 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* yyyy/mm is not an acceptable format.tadf2003-08-313-4/+8
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4464 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_iter_break): should not call TAG_JUMP directly.matz2003-08-302-2/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (struct BLOCK): remove BLOCKTAG, use scope instead.matz2003-08-304-260/+183
| | | | | | | | | | | | | | | | | | | | | * eval.c (POP_TAG): no longer propagate retval. retval is now set directly by localjump_destination(). * eval.c (localjump_destination): new function to cast return/break local jump. * eval.c (rb_yield_0): stop TAG_RETURN/TAG_BREAK escaping. * variable.c (rb_autoload_load): call const_missing if autoloading constant is not defined to allow hook. * eval.c (rb_eval): use rb_const_get_from() instead of rb_const_get_at(). * eval.c (is_defined): forgot to check NODE_COLON3. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* The 2nd arg for add,sub,mult, and div is 0, then result will be same as ↵shigek2003-08-294-51/+74
| | | | | | +,-,*,/ respectively. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* limit inserted.shigek2003-08-291-0/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4460 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* mult & div instead of * & /.shigek2003-08-291-7/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add documentation in RDoc format.wew2003-08-291-1/+46
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4458 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2003-08-29eban2003-08-291-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4457 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * doc/ChangeLog-1.8.0: add changes of Ruby/Tknagai2003-08-2910-170/+1660
| | | | | | | | | | | | | | | | | | | | | | * ext/tcltklib/tcltklib.c : some methods have no effect if on slave-IP * ext/tcltklib/tcltklib.c : can create a interpreter without Tk * ext/tcltklib/tcltklib.c : bug fix on handling exceptions * ext/tcltklib/MANUAL.euc : modify * ext/tk/lib/tk.rb : freeze some core modules * ext/tk/lib/multi-tk.rb : more secure * ext/tk/lib/tk.rb: TkVariable.new(array) --> treat the array as the Tk's list * ext/tk/lib/tk.rb: improve accessibility of TkVariable object * ext/tk/lib/tk.rb, ext/tk/lib/tkfont.rb, ext/tk/lib/tkcanvas.rb, ext/tk/lib/tktext.rb : fix bug of font handling * ext/tk/lib/tkfont.rb TkFont.new() accepts compound fonts * process.c: bug fix * process.c: add rb_secure(2) to methods of Process::{UID,GID,Sys} * process.c: deny handling IDs during evaluating the block given to the Process::{UID,GID}.switch method git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4456 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add documentation in RDoc format.wew2003-08-291-4/+278
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4455 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * variable.c (rb_const_get_0): should check constants defined inmatz2003-08-283-22/+24
| | | | | | | | | | | included modules, if klass is Object. [ruby-talk:79302] * numeric.c (check_uint): check should be done using UINT_MAX, not INT_MAX. this fix is submitted by <lyle@knology.net> in [ruby-core:01486] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4454 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (singleton): typo fixed (ruby-bugs-ja PR#562)matz2003-08-273-5/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4453 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_eval): *a = [1,2] now assigns [[1,2]] to a.matz2003-08-276-49/+82
| | | | | | | | | | | | | consistent with *a = [1], which set [[1]] to a. * node.h: merge NODE_RESTARY to NODE_SPLAT. * parse.y: rules simplified a bit by removing NODE_RESTARY. * sample/test.rb: updated for new assignment behavior. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4452 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * error.c (rb_bug): should not use other methods; this function isnobu2003-08-272-13/+22
| | | | | | | not for ordinary use. [ruby-dev:21259] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4451 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Forgot to round '*'.shigek2003-08-271-5/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/smtp.rb (check_response): AUTH CRAM-MD5 returns 334 response. ↵aamine2003-08-272-1/+6
| | | | | | [ruby-list:38279] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4449 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2003-08-27usa2003-08-261-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (map_errno): support winsock error.usa2003-08-263-48/+107
| | | | | | | | | | | | | | | | | | | | * win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid, kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): pass errno to map_errno(). * win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind, rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname, rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv, rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt, rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr, rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname, rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport, rb_w32_fclose, rb_w32_close): use map_errno(). * win32/win32.h: add winsock errors. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/ostruct.rb (OpenStruct::method_missing): prohibit modifyingmatz2003-08-262-0/+8
| | | | | | | frozen OpenStruct. [ruby-talk:80214] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4446 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* sqrt() error checking bug fixed.shigek2003-08-261-6/+11
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4445 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* sqrt() speed up.shigek2003-08-261-25/+23
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4444 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* commit missnobu2003-08-261-2/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2003-08-26eban2003-08-261-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4442 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/mkmf.rb (create_tmpsrc): add the hook for source.nobu2003-08-262-46/+62
| | | | | | | [ruby-list:38122] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * implicit.c (syck_type_id_to_taguri): corrected detection ofwhy2003-08-263-79/+89
| | | | | | | x-private types. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e