Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a7a535 + 8c126d7 commit eb6aa5cCopy full SHA for eb6aa5c
2 files changed
Lib/idlelib/HyperParser.py
@@ -232,6 +232,11 @@ def get_expression(self):
232
pass
233
else:
234
# We can't continue after other types of brackets
235
+ if rawtext[pos] in "'\"":
236
+ # Scan a string prefix
237
+ while pos > 0 and rawtext[pos - 1] in "rRbBuU":
238
+ pos -= 1
239
+ last_identifier_pos = pos
240
break
241
242
Misc/NEWS
@@ -124,6 +124,8 @@ Core and Builtins
124
Library
125
-------
126
127
+- Issue #16819: IDLE method completion now correctly works for bytes literals.
128
+
129
- Issue #9586: Redefine SEM_FAILED on MacOSX to keep compiler happy.
130
131
- Issue 10527: make multiprocessing use poll() instead of select() if available.
0 commit comments