The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

PDLA::Bugs - How to diagnose and report PDLA problems

VERSION

version 1.0000

DESCRIPTION

This module explains how to get help with a PDLA problem and how, when, and where to submit a bug report. In the future it may be extended to provide some sort of automated bug reporting capability.

IF YOU HAVE A PDLA PROBLEM

The primary resource for support for the Perl Data Language is via the PDLA mailing lists. The pdl-general list is for general use and discussions and is the one to use for questions about problems with PDLA or PDLA use for computation. This is almost always the list to post to for PDLA problems.

The pdl-devel list is specifically for PDLA development and often contains discussions of a rather technical nature relating to PDLA internals. This is not the list for general PDLA discussion or questions: http://pdl.perl.org/?page=mailing-lists.

NOTE: Both pdl-general and pdl-devel are read by the PDLA developers so you don't save time or increase the probability of response by posting to pdl-devel or by cross-posting to pdl-devel. Please stick to pdl-general list posts unless you want to talk PDLA implementation and development.

NOTE: There is also a PDLA IRC channel which can be useful for immediate questions if populated. However, it has the big disadvantage of not being easily searched or routinely read by all PDLA developers and users. As a result, if you get an answer there, it may be incorrect or incomplete depending on who happens to be chatting at the time. It is definitely not readily searchable.

REPORTING BUGS

Please submit bug reports via the GitHub issue tracker at https://github.com/PDLPorters/pdla-core/issues.

where you can review the previously submitted bug reports. Click on New issue to generate a bug report. If you do not already have a GitHub account, you will need to create one to submit the report.

Try to include any information you think might help someone isolate, reproduce, and fix your problem.

At a minimum, include the following information:

  • PDLA version number (e.g. PDLA-2.007)

  • Perl version information. Output from perl -v or perl -V (even better!)

  • Your operating System. You can run the uname -a command on many unix systems

  • The full output of perldla -V

    If you are reporting a bug with an already installed PDLA. If the PDLA has compiled and built but not been installed, you may run perl -Mblib perldla -V from the top level of the PDLA build directory.

  • The bug description and how to reproduce it.

    Short examples using the PDLA shells, pdla2 or perldla, are excellent! Don't forget to include needed input data (as small as possible) so that the code can be run with a cut and paste.

Other things that are often helpful:

  • Details about your operating environment that might be related to the problem

  • Exact cut and pasted error or warning messages

  • The shortest, clearest code you can manage to write which reproduces the bug described.

  • A patch against the latest released version of this distribution which fixes this bug.

Alternatively, send an e-mail report with the above information (including the output of perldla -V) to the pdl-devel mailing list. See http://pdl.perl.org/?page=mailing-lists for info on how to subscribe to this list.

BEFORE YOU SEND A REPORT

BEFORE you report a bug make sure you got the latest release version of PDLA, always available from CPAN, check http://search.cpan.org/search?dist=PDLA.

Also, you can check the FAQ at http://pdl.perl.org/?docs=FAQ&title=PDLA::FAQ. and the mailing list archives for hints. You can find links to the searchable archives at http://pdl.perl.org/?page=mailing-lists.

and there is a Google enable search box on the top right of http://pdl.perl.org which usually gives the best results.

PATCHES

Patches can be submitted in several ways, in order of decreasing preference:

  1. Fork the pdl repository on GitHub, make and test your changes, and submit a pull request;

  2. Edit (or suggesting an edit to) the files in-place on GitHub;

  3. Email a patch to the pdl-devel mailing list.

Patches should be made against the latest released PDLA or, ideally, against the current git sources which you can browse and check out at https://github.com/PDLPorters/pdla-core.

Thanks, The PDLA developers.