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

* ext/pathname/pathname.c (path_sysopen): Pathname#sysopen translated

from pathname.rb.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-08-26 20:16:25 +00:00
parent 71cf670f0f
commit 9eb7262589
3 changed files with 24 additions and 6 deletions

View file

@ -1,3 +1,8 @@
Fri Aug 27 05:11:51 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_sysopen): Pathname#sysopen translated
from pathname.rb.
Thu Aug 26 22:53:56 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* array.c (rb_ary_shuffle): rdoc fix. argument name was missing.

View file

@ -483,12 +483,6 @@ class Pathname
end
end
class Pathname # * IO *
# See <tt>IO.sysopen</tt>.
def sysopen(*args) IO.sysopen(@path, *args) end
end
class Pathname # * FileTest *

View file

@ -320,6 +320,24 @@ path_readlines(int argc, VALUE *argv, VALUE self)
return rb_funcall2(rb_cIO, rb_intern("readlines"), 1+n, args);
}
/*
* call-seq:
* pathname.sysopen([mode, [perm]]) -> fixnum
*
* See <tt>IO.sysopen</tt>.
*
*/
static VALUE
path_sysopen(int argc, VALUE *argv, VALUE self)
{
VALUE args[3];
int n;
args[0] = get_strpath(self);
n = rb_scan_args(argc, argv, "02", &args[1], &args[2]);
return rb_funcall2(rb_cIO, rb_intern("sysopen"), 1+n, args);
}
/*
* See <tt>File.atime</tt>. Returns last access time.
*/
@ -783,6 +801,7 @@ Init_pathname()
rb_define_method(rb_cPathname, "read", path_read, -1);
rb_define_method(rb_cPathname, "binread", path_binread, -1);
rb_define_method(rb_cPathname, "readlines", path_readlines, -1);
rb_define_method(rb_cPathname, "sysopen", path_sysopen, -1);
rb_define_method(rb_cPathname, "atime", path_atime, 0);
rb_define_method(rb_cPathname, "ctime", path_ctime, 0);
rb_define_method(rb_cPathname, "mtime", path_mtime, 0);