-
Notifications
You must be signed in to change notification settings - Fork 22
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
Invalid type 'Q' in pack at <...> #11
Comments
Hi, Can you paste |
Hi, apologize for the delay, here it is:
That is, basically, just a latest portable Strawberry Perl 5.16, 32 bit. |
I wrote the eval-trapping code because I thank that that code don't show the warning. |
I can't reproduce on the sample code for now - let me double-verify on what could cause eval to fail and come back to you, if reproduced. Thank you for the prompt response. |
Got it reproduced - please, get the source code from here: http://dl.dropbox.com/u/3556694/test.tar Any clue? |
Localize signal handler package Handler;
local $SIG{__DIE__} = sub {
print "Caught die: @_";
};
# any code
1; or change order of importing modules use Data::MessagePack;
use Handler;
use strict;
use warnings;
exit 0; |
Got it, thank you! |
As syohex said, there are some way to solve the probblem. |
Blog about |
Hi,
are there any suggestions (how to get rid of) of any plans to get rid of the following warning:
at 32bit platforms?
I understand the reason for this warning, but what about catching it inside SIG{'WARN'} inside the same BEGIN block, to avoid false issue reporting? Or there is some special reason not to do this?
Thanks,
Alexander.
The text was updated successfully, but these errors were encountered: