Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
logilab-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
Service Desk
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
open-source
logilab-common
Commits
0e302d8e7f63
Commit
0e302d8e7f63
authored
1 year ago
by
Laurent Peuch
Browse files
Options
Downloads
Patches
Plain Diff
feat!: remove deprecated logilab.common.date.strptime
parent
2ece8f5d3ce7
No related branches found
No related tags found
1 merge request
!79
remove all deprecated code
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
logilab/common/date.py
+0
-4
0 additions, 4 deletions
logilab/common/date.py
with
0 additions
and
4 deletions
logilab/common/date.py
+
0
−
4
View file @
0e302d8e
...
@@ -28,8 +28,6 @@
...
@@ -28,8 +28,6 @@
from
calendar
import
monthrange
,
timegm
from
calendar
import
monthrange
,
timegm
from
typing
import
Union
,
List
,
Any
,
Optional
,
Generator
from
typing
import
Union
,
List
,
Any
,
Optional
,
Generator
from
logilab.common.deprecation
import
callable_deprecated
try
:
try
:
from
mx.DateTime
import
RelativeDateTime
,
Date
,
DateTimeType
from
mx.DateTime
import
RelativeDateTime
,
Date
,
DateTimeType
except
ImportError
:
except
ImportError
:
...
@@ -213,8 +211,6 @@
...
@@ -213,8 +211,6 @@
ONEDAY
:
timedelta
=
timedelta
(
days
=
1
)
ONEDAY
:
timedelta
=
timedelta
(
days
=
1
)
ONEWEEK
:
timedelta
=
timedelta
(
days
=
7
)
ONEWEEK
:
timedelta
=
timedelta
(
days
=
7
)
strptime
=
callable_deprecated
(
"
Use strptime from datetime.datetime instead
"
)(
datetime
.
strptime
)
def
strptime_time
(
value
,
format
=
"
%H:%M
"
):
def
strptime_time
(
value
,
format
=
"
%H:%M
"
):
return
time
(
*
time_strptime
(
value
,
format
)[
3
:
6
])
return
time
(
*
time_strptime
(
value
,
format
)[
3
:
6
])
...
...
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