Skip to content

Commit

Permalink
0.36. patch for rt.cpan.org # 28814
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed Aug 13, 2007
1 parent cebe2be commit c963af5
Show file tree
Hide file tree
Showing 21 changed files with 29 additions and 22 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,3 +1,10 @@
0.36 Mon Aug 13 12:16:38 EDT 2007

* [rt.cpan.org #28814] - Performance improvement from mehradek (Radoslaw Zielinski)
-use English;
+use English qw( -no_match_vars );


0.35 Fri Apr 20 12:33:53 EDT 2007 - Jesse Vincent <jesse@bestpractical.com>

* New Maintainer: Jesse Vincent <jesse@bestpractical.com> took over
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
@@ -1,7 +1,7 @@
use 5.005;

use strict;
use English;
use English qw( -no_match_vars );
use ExtUtils::MakeMaker;

use File::Find;
Expand Down
6 changes: 3 additions & 3 deletions lib/GnuPG/Interface.pm
@@ -1,4 +1,4 @@
# Interface.pm
# Jnterface.pm
# - providing an object-oriented approach to interacting with GnuPG
#
# Copyright (C) 2000 Frank J. Tobin <ftobin@cpan.org>
Expand All @@ -14,7 +14,7 @@
package GnuPG::Interface;

use strict;
use English;
use English qw( -no_match_vars );
use Carp;
use Fcntl;
use vars qw( $VERSION );
Expand All @@ -26,7 +26,7 @@ use IO::Handle;
use GnuPG::Options;
use GnuPG::Handles;

$VERSION = '0.35';
$VERSION = '0.36';

use Class::MethodMaker
get_set => [ qw( call passphrase ) ],
Expand Down
2 changes: 1 addition & 1 deletion t/MyTest.pm
Expand Up @@ -16,7 +16,7 @@
package MyTest;

use strict;
use English;
use English qw( -no_match_vars );
use Exporter;
use IO::File;
use vars qw( @ISA @EXPORT );
Expand Down
2 changes: 1 addition & 1 deletion t/MyTestSpecific.pm
Expand Up @@ -14,7 +14,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );
use Fatal qw/ open close /;
use IO::File;
use IO::Handle;
Expand Down
2 changes: 1 addition & 1 deletion t/clearsign.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/decrypt.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );
use File::Compare;

use lib './t';
Expand Down
2 changes: 1 addition & 1 deletion t/detach_sign.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/encrypt.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/encrypt_symmetrically.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/export_keys.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/get_public_keys.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/get_secret_keys.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/import_keys.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/list_public_keys.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );
use IO::File;

use lib './t';
Expand Down
2 changes: 1 addition & 1 deletion t/list_secret_keys.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/list_sigs.t
Expand Up @@ -3,7 +3,7 @@
# $Id: list_sigs.t,v 1.7 2001/05/03 06:00:06 ftobin Exp $

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/passphrase_handling.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );
use Symbol;
use IO::File;

Expand Down
2 changes: 1 addition & 1 deletion t/sign.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/sign_and_encrypt.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down
2 changes: 1 addition & 1 deletion t/verify.t
Expand Up @@ -4,7 +4,7 @@
#

use strict;
use English;
use English qw( -no_match_vars );

use lib './t';
use MyTest;
Expand Down

0 comments on commit c963af5

Please sign in to comment.