-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PATCH] Indirect object syntax fixed in FileHandle.pm #15334
Comments
From cwhitener@gmail.comThis is a bug report for perl from cwhitener@gmail.com, Simple update of FileHandle to no longer use indirect object syntax. = new IO::Handle; to = IO::Handle->new; Flags: Site configuration information for perl 5.25.1: Configured by cwhitener at Wed May 18 11:58:31 EDT 2016. Summary of my perl5 (revision 5 version 25 subversion 1) configuration: Locally applied patches: @INC for perl 5.25.1: Environment for perl 5.25.1: |
From cwhitener@gmail.com0001-Indirect-object-syntax-fixed-in-FileHandle.pm.patchFrom 98c652381c3f7d3e99f896a07b5d9194cdcb4e93 Mon Sep 17 00:00:00 2001
From: Chase Whitener <cwhitener@gmail.com>
Date: Wed, 18 May 2016 12:20:28 -0400
Subject: [PATCH] Indirect object syntax fixed in FileHandle.pm
---
lib/FileHandle.pm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/FileHandle.pm b/lib/FileHandle.pm
index 6b3636a..85bb09d 100644
--- a/lib/FileHandle.pm
+++ b/lib/FileHandle.pm
@@ -36,7 +36,7 @@ require IO::File;
#
# Everything we're willing to export, we must first import.
#
-import IO::Handle grep { !defined(&$_) } @EXPORT, @EXPORT_OK;
+IO::Handle->import( grep { !defined(&$_) } @EXPORT, @EXPORT_OK );
#
# Some people call "FileHandle::function", so all the functions
@@ -88,8 +88,8 @@ sub import {
#
sub pipe {
- my $r = new IO::Handle;
- my $w = new IO::Handle;
+ my $r = IO::Handle->new;
+ my $w = IO::Handle->new;
CORE::pipe($r, $w) or return undef;
($r, $w);
}
--
2.7.4 (Apple Git-66)
|
From @jkeenanOn Wed May 18 09:33:39 2016, cwhitener@gmail.com wrote:
Patch seems reasonable. p5p: Shall I apply? Thank you very much.
-- |
The RT System itself - Status changed from 'new' to 'open' |
From @ap* James E Keenan via RT <perlbug-followup@perl.org> [2016-05-20 04:23]:
Aye, IMO. |
@jkeenan - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#128178 (status was 'resolved')
Searchable as RT128178$
The text was updated successfully, but these errors were encountered: