Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
86c1b13b
Commit
86c1b13b
authored
Nov 12, 2002
by
Per Cederqvist
Browse files
(lexer.__bad_type): Allow types that ends in a number, such as
"Membership-10".
parent
37095936
Changes
1
Hide whitespace changes
Inline
Side-by-side
doc/checkargs.py
View file @
86c1b13b
...
...
@@ -1131,9 +1131,15 @@ class lexer:
if
ok
and
not
isupper
(
tp
[
0
]):
ok
=
0
upper
=
0
num_seen
=
0
for
c
in
tp
[
1
:]:
if
upper
:
if
c
==
'-'
or
not
isupper
(
c
):
if
num_seen
:
if
not
isdigit
(
c
):
ok
=
0
elif
upper
:
if
isdigit
(
c
):
num_seen
=
1
elif
c
==
'-'
or
not
isupper
(
c
):
ok
=
0
upper
=
0
else
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment