Skip Menu |

This queue is for tickets about the UNIVERSAL-ref CPAN distribution.

Report information
The Basics
Id: 78974
Status: new
Priority: 0/
Queue: UNIVERSAL-ref

People
Owner: Nobody in particular
Requestors: STEFFENW [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.14
Fixed in: (no value)



Subject: global change of $| (OUTPUT_AUTOFLUSH)
You change the output autoflush for the whole project. This makes any output for all handles slow. See line 66: $| = 1; XSLoader::load( 'UNIVERSAL::ref', $UNIVERSAL::ref::VERSION ); please change to: { local $| = 1; XSLoader::load( 'UNIVERSAL::ref', $UNIVERSAL::ref::VERSION ); }