mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
#1535: rename __builtin__ module to builtins.
This commit is contained in:
parent
87f9c53937
commit
1a3284ed69
70 changed files with 246 additions and 247 deletions
|
@ -172,7 +172,7 @@ class IdbAdapter:
|
|||
def dict_item(self, did, key):
|
||||
dict = dicttable[did]
|
||||
value = dict[key]
|
||||
value = repr(value) ### can't pickle module '__builtin__'
|
||||
value = repr(value) ### can't pickle module 'builtins'
|
||||
return value
|
||||
|
||||
#----------end class IdbAdapter----------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue