Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
68d92c2d
Commit
68d92c2d
authored
Apr 02, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patches/Restricted: adjust datetime _strptime import workaround for py3
parent
dfa3f09c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
product/ERP5Type/patches/Restricted.py
product/ERP5Type/patches/Restricted.py
+3
-0
No files found.
product/ERP5Type/patches/Restricted.py
View file @
68d92c2d
...
@@ -360,6 +360,7 @@ allow_class_attribute(datetime.date)
...
@@ -360,6 +360,7 @@ allow_class_attribute(datetime.date)
allow_class_attribute
(
datetime
.
time
)
allow_class_attribute
(
datetime
.
time
)
allow_class_attribute
(
datetime
.
timedelta
)
allow_class_attribute
(
datetime
.
timedelta
)
allow_class_attribute
(
datetime
.
tzinfo
)
allow_class_attribute
(
datetime
.
tzinfo
)
# We need special care for datetime.datetime.strptime() in Python 2.7.
# We need special care for datetime.datetime.strptime() in Python 2.7.
# It is because datetime.datetime.strptime() imports _strptime by C function
# It is because datetime.datetime.strptime() imports _strptime by C function
# PyImport_Import which calls
# PyImport_Import which calls
...
@@ -370,6 +371,8 @@ allow_class_attribute(datetime.tzinfo)
...
@@ -370,6 +371,8 @@ allow_class_attribute(datetime.tzinfo)
# This prevents both importing _strptime with level=0, and accessing __doc__,
# This prevents both importing _strptime with level=0, and accessing __doc__,
# when calling datetime.datetime.strptime().
# when calling datetime.datetime.strptime().
import
_strptime
import
_strptime
# on python3 it seems we actually need to call strptime for this.
datetime
.
datetime
.
strptime
(
''
,
''
)
# Allow dict.fromkeys, Only this method is a class method in dict module.
# Allow dict.fromkeys, Only this method is a class method in dict module.
allow_class_attribute
(
dict
,
{
'fromkeys'
:
1
})
allow_class_attribute
(
dict
,
{
'fromkeys'
:
1
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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