Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita26349d

Browse files
committed
Python 3 compatibility
#717
1 parentf7bbe6b commita26349d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎git/config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,8 @@ def items_all(self, section_name):
523523

524524
rv[k].extend(v)
525525

526-
returnrv.items()
526+
# For consistency with items(), return a list, even in Python 3
527+
returnlist(rv.items())
527528

528529
@needs_values
529530
defwrite(self):

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp