Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
acadc9d6
Commit
acadc9d6
authored
Jul 21, 1996
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add mac compatibility
parent
41e17c41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
1 deletion
+29
-1
Demo/rpc/rpc.py
Demo/rpc/rpc.py
+29
-1
No files found.
Demo/rpc/rpc.py
View file @
acadc9d6
...
...
@@ -163,9 +163,37 @@ def make_auth_unix_default():
except
ImportError
:
uid
=
gid
=
0
import
time
return
make_auth_unix
(
int
(
time
.
time
()),
\
return
make_auth_unix
(
int
(
time
.
time
()
-
unix_epoch
()
),
\
socket
.
gethostname
(),
uid
,
gid
,
[])
_unix_epoch
=
-
1
def
unix_epoch
():
"""Very painful calculation of when the Unix Epoch is.
This is defined as the return value of time.time() on Jan 1st,
1970, 00:00:00 GMT.
On a Unix system, this should always return 0.0. On a Mac, the
calculations are needed -- and hard because of integer overflow
and other limitations.
"""
global
_unix_epoch
if
_unix_epoch
>=
0
:
return
_unix_epoch
import
time
now
=
time
.
time
()
localt
=
time
.
localtime
(
now
)
# (y, m, d, hh, mm, ss, ..., ..., ...)
gmt
=
time
.
gmtime
(
now
)
offset
=
time
.
mktime
(
localt
)
-
time
.
mktime
(
gmt
)
y
,
m
,
d
,
hh
,
mm
,
ss
=
1970
,
1
,
1
,
0
,
0
,
0
offset
,
ss
=
divmod
(
ss
+
offset
,
60
)
offset
,
mm
=
divmod
(
mm
+
offset
,
60
)
offset
,
hh
=
divmod
(
hh
+
offset
,
24
)
d
=
d
+
offset
_unix_epoch
=
time
.
mktime
((
y
,
m
,
d
,
hh
,
mm
,
ss
,
0
,
0
,
0
))
print
"Unix epoch:"
,
time
.
ctime
(
_unix_epoch
)
return
_unix_epoch
# Common base class for clients
...
...
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