diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2011-02-04 19:09:02 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2011-02-04 19:09:02 (GMT) |
commit | d77520a426769a2d255433750822040830554658 (patch) | |
tree | 8c45f735e3ba342f1d26f061ea3bbe9becf7c35d /PC/python3.def | |
parent | 4b0c24a3aeb9f58e4fc91b813f90b55df8c5fc0e (diff) | |
download | cpython-d77520a426769a2d255433750822040830554658.zip cpython-d77520a426769a2d255433750822040830554658.tar.gz cpython-d77520a426769a2d255433750822040830554658.tar.bz2 |
Issue #11118: Fix bogus export of None in python3.dll.
Diffstat (limited to 'PC/python3.def')
-rw-r--r-- | PC/python3.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/python3.def b/PC/python3.def index 582e433..b8f483c 100644 --- a/PC/python3.def +++ b/PC/python3.def @@ -681,7 +681,7 @@ EXPORTS _Py_Dealloc=python32._Py_Dealloc
_Py_EllipsisObject=python32._Py_EllipsisObject DATA
_Py_FalseStruct=python32._Py_FalseStruct DATA
- _Py_NoneStruct=python32.Py_GetCopyright
+ _Py_NoneStruct=python32._Py_NoneStruct DATA
_Py_NotImplementedStruct=python32._Py_NotImplementedStruct DATA
_Py_SwappedOp=python32._Py_SwappedOp DATA
_Py_TrueStruct=python32._Py_TrueStruct DATA
|