summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorm-d-w <mw9050@gmail.com>2013-06-10 18:17:02 -0400
committerm-d-w <mw9050@gmail.com>2013-06-10 18:17:02 -0400
commit37b55c0ab69f828a757ca15a4463a5ae46f179ff (patch)
tree465e82b24cd16455cc41ef7e346e2db4eb255390
parent794816b61b744cfa6bf44319ba95a19123292e0e (diff)
downloadnumpy-37b55c0ab69f828a757ca15a4463a5ae46f179ff.tar.gz
ENH: Optimize array creation by avoiding errors
-rw-r--r--numpy/core/src/multiarray/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/multiarray/common.c b/numpy/core/src/multiarray/common.c
index 995d0db25..4787c6482 100644
--- a/numpy/core/src/multiarray/common.c
+++ b/numpy/core/src/multiarray/common.c
@@ -38,7 +38,7 @@
* This can be much faster then PyObject_GetAttrString where
* exceptions are not used by caller.
*
- * 'v' is the object to search for attribute.
+ * 'obj' is the object to search for attribute.
*
* 'name' is the attribute to search for.
*