This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Typo in Modules/hashlib.h
Type: Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, python-dev, vajrasky
Priority: normal Keywords:

Created on 2013-08-02 04:43 by vajrasky, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg194151 - (view) Author: Vajrasky Kok (vajrasky) * Date: 2013-08-02 04:43
Got typo in Modules/hashlib.h. See this patch for detail:

--- a/Modules/hashlib.h	Wed Jul 31 20:48:26 2013 -0400
+++ b/Modules/hashlib.h	Fri Aug 02 12:39:00 2013 +0800
@@ -2,7 +2,7 @@
 
 /*
  * Given a PyObject* obj, fill in the Py_buffer* viewp with the result
- * of PyObject_GetBuffer.  Sets and exception and issues a return NULL
+ * of PyObject_GetBuffer.  Sets an exception and issues a return NULL
  * on any errors.
  */
 #define GET_BUFFER_VIEW_OR_ERROUT(obj, viewp) do { \
msg194154 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-08-02 05:13
New changeset 3716d64f846b by Ned Deily in branch '3.3':
Issue #18627: Fix typo noticed by Vajrasky Kok.
http://hg.python.org/cpython/rev/3716d64f846b

New changeset 454e9db1c750 by Ned Deily in branch 'default':
Closes #18627: merge from 3.3
http://hg.python.org/cpython/rev/454e9db1c750
History
Date User Action Args
2022-04-11 14:57:48adminsetgithub: 62827
2013-08-02 05:14:55ned.deilysetversions: + Python 3.3
2013-08-02 05:13:54python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg194154

resolution: fixed
stage: resolved
2013-08-02 04:43:38vajraskycreate