Remove trailing spaces [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2020-07-20 13:31:41 +09:00
Родитель 1b3a6847be
Коммит d2bf6133f6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
5 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -31,7 +31,7 @@ module OpenSSL::Buffering
force_encoding(BINARY)
end
def << string
if string.encoding == BINARY
super(string)

Просмотреть файл

@ -236,7 +236,7 @@ YoaOffgTf5qxiwkjnlVZQc3whgnEt9FpVMvQ9eknyeGB5KHfayAc3+hUAvI3/Cr3
def fileno
to_io.fileno
end
def addr
to_io.addr
end

2
io.c
Просмотреть файл

@ -1293,7 +1293,7 @@ rb_io_wait_writable(int f)
VALUE result = rb_funcall(scheduler, rb_intern("wait_writable_fd"), 1, INT2NUM(f));
return RTEST(result);
}
io_fd_check_closed(f);
switch (errno) {
case EINTR:

Просмотреть файл

@ -39,14 +39,14 @@ class TestFiberIO < Test::Unit::TestCase
assert_predicate(i, :closed?)
assert_predicate(o, :closed?)
end
def test_heavy_read
skip unless defined?(UNIXSocket)
16.times.map do
thread = Thread.new do
i, o = UNIXSocket.pair
scheduler = Scheduler.new
Thread.current.scheduler = scheduler

Просмотреть файл

@ -755,7 +755,7 @@ VALUE
rb_gv_get(const char *name)
{
ID id = find_global_id(name);
if (!id) {
rb_warning("global variable `%s' not initialized", name);
return Qnil;