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

Commit646dc16

Browse files
authored
Merge pull request#2047 from EliahKagan/quoted-empty
Remove explicit empty `""` handling in ConfigParser
2 parents63160de +2f22524 commit646dc16

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

‎git/config.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -501,9 +501,6 @@ def string_decode(v: str) -> str:
501501
ifpos!=-1andoptval[pos-1].isspace():
502502
optval=optval[:pos]
503503
optval=optval.strip()
504-
ifoptval=='""':
505-
optval=""
506-
# END handle empty string
507504
optname=self.optionxform(optname.rstrip())
508505
iflen(optval)>1andoptval[0]=='"'andoptval[-1]!='"':
509506
is_multi_line=True
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[core]
2+
filemode = ""

‎test/test_config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,10 @@ def test_config_with_quotes(self):
416416
self.assertEqual(cr.get("user","name"),"Cody Veal")
417417
self.assertEqual(cr.get("user","email"),"cveal05@gmail.com")
418418

419+
deftest_config_with_empty_quotes(self):
420+
cr=GitConfigParser(fixture_path("git_config_with_empty_quotes"),read_only=True)
421+
self.assertEqual(cr.get("core","filemode"),"","quotes can form a literal empty string as value")
422+
419423
deftest_config_with_quotes_with_literal_whitespace(self):
420424
cr=GitConfigParser(fixture_path("git_config_with_quotes_whitespace_inside"),read_only=True)
421425
self.assertEqual(cr.get("core","commentString"),"# ")

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp