Skip to content

Commit 3c231c7

Browse files
authored
time_low -> time_lo in comment
1 parent 48649e5 commit 3c231c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/uuid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def time(self):
362362
time_lo = (self.int >> 64) & 0x0fff
363363
return time_hi << 28 | (self.time_mid << 12) | time_lo
364364
else:
365-
# time_low (32) | time_mid (16) | ver (4) | time_hi (12) | ... (64)
365+
# time_lo (32) | time_mid (16) | ver (4) | time_hi (12) | ... (64)
366366
#
367367
# For compatibility purposes, we do not warn or raise when the
368368
# version is not 1 (timestamp is irrelevant to other versions).

0 commit comments

Comments
 (0)