Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PDLPorters/pdl
base: bb72bc70afe0
Choose a base ref
...
head repository: PDLPorters/pdl
compare: cdc3ed9350f3
Choose a head ref
  • 12 commits
  • 10 files changed
  • 3 contributors

Commits on May 11, 2012

  1. Paired down some barfing/croaking text in PDL::Core

    Dima's updates a couple of years ago switched PDL's barf to use a stack trace,
    at least in PDL::Core. This becomes a problem for some functions that re-barf.
    This minor patch to Core.pm.PL udpates the barfing behavior to use croak where
    appropriate.
    
    It also changes the definition of PDL::Core::barf to goto() Carp::confess
    instead of simply calling it. The latter behavior resulted in an erroneous line
    at the top of the stack trace pointing (uselessly) to the definition of
    PDL::Core::barf.
    run4flat committed May 11, 2012
    Copy the full SHA
    7685fa7 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2012

  1. Copy the full SHA
    ef70276 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    37bd0e0 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    b435539 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    19fd7c2 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2012

  1. Remove deprecation warning in PGPLOT/Window/Window.pm

    With perl-5.16 a deprecation warning was being emitted in
    relation to a "defined(@array)".
    At line 4416, changed:
    if (defined(@{$self->{_env_options}})) {
    to
    if (@{$self->{_env_options}}) {
    sisyphus committed May 13, 2012
    Copy the full SHA
    5beaca7 View commit details
    Browse the repository at this point in the history
  2. IO/FlexRaw.pm - Remove the "No SIGBUS" warning on Windows

    Simply changed:
    local $SIG{BUS} = \&myhandler;
    to
    local $SIG{BUS} = \&myhandler unless $^O =~ /MSWin32/i;
    (Doesn't seem to alter the scope of the 'local' call.)
    sisyphus committed May 13, 2012
    Copy the full SHA
    8fca2d9 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2012

  1. skip t/gd_oo_tests.t on Dragonfly BSD to avoid sf.net #3518190

    The previous skip pattern failed because $^O for Dragonfly BSD
    is dragonfly (and not something ending with BSD).
    devel-chm committed May 14, 2012
    Copy the full SHA
    d863355 View commit details
    Browse the repository at this point in the history
  2. skip t/inline-comment-test.t on BSD to avoid sf.net #3518190

    TODO skips only work if the test can't cause a SEGFAULT.
    When building Inline code, that is always possible.
    devel-chm committed May 14, 2012
    Copy the full SHA
    d90cc14 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    1e14707 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    1250bea View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    cdc3ed9 View commit details
    Browse the repository at this point in the history