1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* array.c (rb_ary_s_create): no need for negative argc check.

[ruby-core:04463]

* array.c (rb_ary_unshift_m): ditto.

* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
  of StandardError class, not Exception class.  [ruby-core:04429]

* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
  fixed: [ruby-core:04444]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2005-02-23 13:52:19 +00:00
parent 616a75e7e3
commit 3d4376d167
6 changed files with 23 additions and 12 deletions

View file

@ -51,7 +51,7 @@ end # module NQXML
module XMLRPC
class FaultException < Exception
class FaultException < StandardError
attr_reader :faultCode, :faultString
def initialize(faultCode, faultString)