mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* compar.c (cmp_equal): Document ignored exception and return false
By Makoto Kishimoto [Bug #7790] [ruby-dev:46925] [ruby-dev:46910] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39140 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bab42629eb
commit
e798251a8a
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Feb 8 07:33:00 2013 Zachary Scott <zachary@zacharyscott.net>
|
||||
|
||||
* compar.c (cmp_equal): Document ignored exception and return false
|
||||
By Makoto Kishimoto [Bug #7790] [ruby-dev:46925] [ruby-dev:46910]
|
||||
|
||||
Fri Feb 8 07:17:00 2013 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* lib/rubygems/dependency_installer.rb: Only install local gems if
|
||||
|
|
3
compar.c
3
compar.c
|
@ -54,6 +54,9 @@ cmp_failed(void)
|
|||
* Compares two objects based on the receiver's <code><=></code>
|
||||
* method, returning true if it returns 0. Also returns true if
|
||||
* _obj_ and _other_ are the same object.
|
||||
*
|
||||
* Even if _obj_ <=> _other_ raised an exception, the exception
|
||||
* is ignoread and returns false.
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
|
|
Loading…
Reference in a new issue