Skip to content

Commit e15861a

Browse files
authored
Merge pull request #3017 from practicalswift/python
[gardening] Use consistent capitalization for "Python".
2 parents b15e436 + db6890f commit e15861a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*~
1414
# Merge files created by git.
1515
*.orig
16-
# Byte compiled python modules.
16+
# Byte compiled Python modules.
1717
*.pyc
1818
# vim swap files
1919
.*.sw[a-z]

docs/DebuggingTheCompiler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ we know to ignore swift_getGenericMetadata 84 times, i.e.::
217217
LLDB Scripts
218218
````````````
219219

220-
LLDB has powerful capabilities of scripting in python among other languages. An
220+
LLDB has powerful capabilities of scripting in Python among other languages. An
221221
often overlooked, but very useful technique is the -s command to lldb. This
222222
essentially acts as a pseudo-stdin of commands that lldb will read commands
223223
from. Each time lldb hits a stopping point (i.e. a breakpoint or a

tools/SourceKit/bindings/python/sourcekitd/capi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ def register_function(lib, item, ignore_errors):
527527
try:
528528
func = getattr(lib, item[0])
529529
except AttributeError as e:
530-
msg = str(e) + ". Please ensure that your python bindings are "\
530+
msg = str(e) + ". Please ensure that your Python bindings are "\
531531
"compatible with your sourcekitd version."
532532
if ignore_errors:
533533
return

0 commit comments

Comments
 (0)