diff options
author | m-d-w <mw9050@gmail.com> | 2013-06-10 18:17:02 -0400 |
---|---|---|
committer | m-d-w <mw9050@gmail.com> | 2013-06-10 18:17:02 -0400 |
commit | 37b55c0ab69f828a757ca15a4463a5ae46f179ff (patch) | |
tree | 465e82b24cd16455cc41ef7e346e2db4eb255390 | |
parent | 794816b61b744cfa6bf44319ba95a19123292e0e (diff) | |
download | numpy-37b55c0ab69f828a757ca15a4463a5ae46f179ff.tar.gz |
ENH: Optimize array creation by avoiding errors
-rw-r--r-- | numpy/core/src/multiarray/common.c | 2 |
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. * |