diff options
author | Matti Picus <matti.picus@gmail.com> | 2018-04-24 09:05:26 +0300 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2018-04-24 09:05:26 +0300 |
commit | 099f9a7a22285f3f6cb17601759eacc86ed4211a (patch) | |
tree | 5388e681f52d5eaf0edb06eb3677a77492dc0d32 /pypy/module/cpyext/cdatetime.py | |
parent | merge py3.5 into release (diff) | |
parent | merge default into branch (diff) | |
download | pypy-099f9a7a22285f3f6cb17601759eacc86ed4211a.tar.gz pypy-099f9a7a22285f3f6cb17601759eacc86ed4211a.tar.bz2 pypy-099f9a7a22285f3f6cb17601759eacc86ed4211a.zip |
merge py3.5 into releaserelease-pypy3.5-v6.0.0
Diffstat (limited to 'pypy/module/cpyext/cdatetime.py')
-rw-r--r-- | pypy/module/cpyext/cdatetime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pypy/module/cpyext/cdatetime.py b/pypy/module/cpyext/cdatetime.py index ce0bacc004..135f148f08 100644 --- a/pypy/module/cpyext/cdatetime.py +++ b/pypy/module/cpyext/cdatetime.py @@ -124,7 +124,7 @@ def init_datetime(space): # app level datetime.date. If a c-extension class uses datetime.date for its # base class and defines a tp_dealloc, we will get this: # c_class->tp_dealloc == tp_dealloc_func - # c_class->tp_base == datetime.date, + # c_class->tp_base == datetime.date, # datetime.date->tp_dealloc = _PyPy_subtype_dealloc # datetime.date->tp_base = W_DateTime_Date # W_DateTime_Date->tp_dealloc = _PyPy_subtype_dealloc |