mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
add_module_idx(): If \ignorePlatformAnnotation is used, only ignore
the specified annotation, not any annotation.
This commit is contained in:
parent
35c3ffdc3f
commit
62cc360e38
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ sub add_module_idx{
|
||||||
$key =~ s/<tt>([a-zA-Z0-9._]*)<\/tt>/\1/;
|
$key =~ s/<tt>([a-zA-Z0-9._]*)<\/tt>/\1/;
|
||||||
my $plat = "$ModulePlatforms{$key}";
|
my $plat = "$ModulePlatforms{$key}";
|
||||||
$plat = ''
|
$plat = ''
|
||||||
if $IGNORE_PLATFORM_ANNOTATION;
|
if ($plat eq $IGNORE_PLATFORM_ANNOTATION);
|
||||||
if (!$first) {
|
if (!$first) {
|
||||||
$allthesame = 0
|
$allthesame = 0
|
||||||
if ($prevplat ne $plat);
|
if ($prevplat ne $plat);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue