Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libmtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
icon-libraries
libmtime
Merge requests
!7
1.0.10 Python: 2 to 3, (dt,dt) / td division, mtime object interface
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
1.0.10 Python: 2 to 3, (dt,dt) / td division, mtime object interface
1.0.10-python-2to3-dt_dt_td_division-mtime
into
master
Overview
2
Commits
8
Pipelines
0
Changes
14
Merged
Karl-Hermann Wieners
requested to merge
1.0.10-python-2to3-dt_dt_td_division-mtime
into
master
4 years ago
Overview
2
Commits
8
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
version 5
version 5
80a514aa
3 years ago
version 4
24109c8e
4 years ago
version 3
461c3571
4 years ago
version 2
4f542fa5
4 years ago
version 1
6522f549
4 years ago
master (base)
and
latest version
latest version
6623385b
8 commits,
3 years ago
version 5
80a514aa
7 commits,
3 years ago
version 4
24109c8e
6 commits,
4 years ago
version 3
461c3571
5 commits,
4 years ago
version 2
4f542fa5
4 commits,
4 years ago
version 1
6522f549
3 commits,
4 years ago
Show latest version
2 files
+
7
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
configure
+
6
−
6
Options
@@ -15843,13 +15843,13 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
if test -n "$PYTHON"; then
# If the user set $PYTHON, use it and don't search something else.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 2.
7
" >&5
$as_echo_n "checking whether $PYTHON version is >= 2.
7
... " >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 2.
6
" >&5
$as_echo_n "checking whether $PYTHON version is >= 2.
6
... " >&6; }
prog="import sys
# split strings by '.' and convert to numeric. Append some zeros
# because we need at least 4 digits for the hex conversion.
# map returns an iterator in Python 3.0 and a list in 2.x
minver = list(map(int, '2.
7
'.split('.'))) + [0, 0, 0]
minver = list(map(int, '2.
6
'.split('.'))) + [0, 0, 0]
minverhex = 0
# xrange is not present in Python 3.0 and range returns an iterator
for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i]
@@ -15870,8 +15870,8 @@ fi
else
# Otherwise, try each interpreter until we find one that satisfies
# VERSION.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 2.
7
" >&5
$as_echo_n "checking for a Python interpreter with version >= 2.
7
... " >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 2.
6
" >&5
$as_echo_n "checking for a Python interpreter with version >= 2.
6
... " >&6; }
if ${am_cv_pathless_PYTHON+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -15882,7 +15882,7 @@ else
# split strings by '.' and convert to numeric. Append some zeros
# because we need at least 4 digits for the hex conversion.
# map returns an iterator in Python 3.0 and a list in 2.x
minver = list(map(int, '2.
7
'.split('.'))) + [0, 0, 0]
minver = list(map(int, '2.
6
'.split('.'))) + [0, 0, 0]
minverhex = 0
# xrange is not present in Python 3.0 and range returns an iterator
for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i]
Loading