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.
1 parent 3108fb5 commit 8c126d7Copy full SHA for 8c126d7
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 "rRbB":
238
+ pos -= 1
239
+ last_identifier_pos = pos
240
break
241
242
Misc/NEWS
@@ -189,6 +189,8 @@ Core and Builtins
189
Library
190
-------
191
192
+- Issue #16819: IDLE method completion now correctly works for bytes literals.
193
+
194
- Issue #9586: Redefine SEM_FAILED on MacOSX to keep compiler happy.
195
196
- Issue 10527: make multiprocessing use poll() instead of select() if available.
0 commit comments