Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
resolv conflict in uuid.py
  • Loading branch information
aixtools committed Feb 5, 2018
commit e6d1c0ebb8e7761d51eecc461fd9951e95a99b27
2 changes: 1 addition & 1 deletion Lib/uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ def _random_getnode():

_NODE_GETTERS_AIX = [_unix_getnode, _netstat_getnode]

def getnode():
def getnode(*, getters=None):
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't see the purpose of any changes from here and further.

About this one specifically:

  • There's no discussion about an interface change or justification for it.
  • In any case, the getters arg is unused as the code is now.

"""Get the hardware address as a 48-bit positive integer.

The first time this runs, it may launch a separate program, which could
Expand Down