Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
What Format
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
What Format
Commits
59839c35
Commit
59839c35
authored
5 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Hide redundant formats by default.
parent
5c7fa43e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
whatformat/util/whatdateformat.py
+26
-7
26 additions, 7 deletions
whatformat/util/whatdateformat.py
with
26 additions
and
7 deletions
whatformat/util/whatdateformat.py
+
26
−
7
View file @
59839c35
...
...
@@ -39,23 +39,42 @@ def get_all_format_strings(date_string, allow_reuse=False,
possible_parts
.
append
([
delimiter
])
possible_combinations
=
list
(
product
(
*
possible_parts
))
for
parts_sequence
in
possible_combinations
:
if
any
([
bool
(
'
%-
'
in
x
)
for
x
in
parts_sequence
])
and
not
no_zero
:
if
str
(
parts_sequence
).
replace
(
'
%-
'
,
'
%
'
)
in
\
[
str
(
c
)
for
c
in
possible_combinations
]:
continue
if
not
no_zero
:
possible_combinations
=
_remove_extra_nlz
(
# type: ignore
possible_combinations
)
for
sequence
in
possible_combinations
:
if
not
allow_reuse
:
counts
=
Counter
(
parts_
sequence
)
counts
=
Counter
(
sequence
)
max_count
=
max
(
counts
[
diretive
]
for
diretive
in
FORMAT_DIRECTIVES
)
if
max_count
>
1
:
continue
format_string
=
""
.
join
(
parts_
sequence
)
format_string
=
""
.
join
(
sequence
)
if
parsed_datetime
.
strftime
(
format_string
).
lower
()
==
date_string
.
lower
():
yield
format_string
def
_remove_extra_nlz
(
combinations
)
->
Iterator
[
List
[
str
]]:
"""
Remove unnecessary non-leading-zero variants.
Remove non-leading-zero directives (e.g.
"
%-I
"
) if the corresponding
leading-zero directive (e.g.
"
%I
"
) is also a match.
"""
for
variant
in
combinations
:
is_duplicate
=
False
for
i
,
token
in
enumerate
(
variant
):
if
'
-
'
in
token
:
with_zero
=
(
variant
[:
i
]
+
(
token
.
replace
(
'
-
'
,
''
),)
+
variant
[(
i
+
1
):])
if
with_zero
in
combinations
:
is_duplicate
=
True
break
if
not
is_duplicate
:
yield
variant
def
get_unique_format_strings
(
date_string
,
allow_reuse
=
False
)
->
List
[
str
]:
"""
Return date format strings matching date_string, without duplicates.
"""
return
list
(
set
(
get_all_format_strings
(
date_string
,
allow_reuse
)))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment