You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- remove the `method HANDLE EXPR` example
- mention that an explicit `use IO::Handle` has not been required since
perl v5.14 (that was 13 years ago)
- remove the advice to prefer built-in variables over IO::Handle methods
because:
- `STDOUT->autoflush(1);` is about 200x more readable than `$|++;` or
similar nonsense
- loading IO::Handle isn't actually that expensive (and if it is, we
should figure out how to speed up `$fh->autoflush` in core, not
discourage programmers from using it)
- the performance advice is from 1999 and hasn't been updated since
(commits 1421858, 19799a2)
- as far as I can tell, this advice is mostly Tom Christiansen's
personal opinion and not the general consensus of the Perl community
- move a comma from one paragraph to the next (technically unrelated,
but it's in the general vicinity of the preceding changes)
0 commit comments