summaryrefslogtreecommitdiff
path: root/numpy/core/_internal.py
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #9083 from eric-wieser/fix-duplicate-order-errorahaldane2017-05-101-4/+10
|\
| * MAINT: Improve error message from sorting with duplicate keyEric Wieser2017-05-101-4/+10
* | MAINT: refine error message for __array_ufunc__ not implementedStephan Hoyer2017-05-101-2/+3
* | BUG: Fix inconsistent lookup of __array_ufunc__.Eric Wieser2017-05-101-1/+1
|/
* Merge pull request #9054 from eric-wieser/fix-pep3118ahaldane2017-05-091-106/+134
|\
| * BUG: Prevent autogenerated names clashing with given namesEric Wieser2017-05-051-27/+20
| * BUG: Fix non-determinism in order of fields created from pep3118 formatsEric Wieser2017-05-051-20/+28
| * ENH: Pad with itemsize, not padding fieldsEric Wieser2017-05-051-27/+18
| * MAINT: refactor _dtype_from_pep3118 in terms of a streamEric Wieser2017-05-051-43/+79
* | Merge pull request #9026 from eric-wieser/ufunc_docstringsCharles Harris2017-05-091-0/+45
|\ \
| * | DOC: Show full argument lists for ufuncsEric Wieser2017-05-081-0/+45
* | | ENH: Spelling fixesVille Skyttä2017-05-091-1/+1
|/ /
* | BUG: Move ctypes ImportError catching to appropriate place (#8898)davidjn2017-05-081-17/+30
|/
* ENH: Better error message for __array_ufunc__ not implementedStephan Hoyer2017-04-271-0/+12
* ENH: Allow AxisErrors to have a prefix on the messageEric Wieser2017-03-281-1/+14
* MAINT: Remove asbytes where a b prefix would sufficeEric Wieser2017-03-251-16/+15
* ENH: For compatibility, use an exception type that subclasses both original t...Eric Wieser2017-02-201-0/+3
* DOC: change Numpy to NumPy in dosctrings and commentsPierre de Buyl2016-09-061-1/+1
* BUG: interpret 'c' PEP3118/struct type as 'S1'.John Zwinck2016-07-051-0/+2
* BUG: Fix numerous bugs related to zero-width string arrays (#473, #1901, #219...Erik M. Bray2016-05-311-2/+0
* BUG: revert view safety checksAllan Haldane2015-10-261-124/+13
* MAINT: Speedup field access by removing unneeded safety checks (1/3)Allan Haldane2015-10-181-40/+14
* BUG: Add void field at end of dtype.descr to match itemsizeSebastian Berg2015-09-251-0/+4
* ENH: add shares_memory, implement may_share_memory using itPauli Virtanen2015-08-291-0/+4
* MAINT: allow '?' in structured dtype commastring specificationAllan Haldane2015-07-201-1/+1
* MAINT: Fix some pyflakes warnings in numpy/core/*.pyCharles Harris2015-07-051-4/+1
* STY: PEP8 fixes for numpy/core/*.pyCharles Harris2015-07-051-19/+22
* ENH: simplify field indexing of structured arraysAllan Haldane2015-06-171-26/+49
* ENH: structured datatype safety checksAllan Haldane2015-06-051-0/+168
* STY: Giant comma spacing fixup.Charles Harris2013-08-181-3/+3
* MAINT: Fixup more dictionary fixer fixes.Charles Harris2013-04-071-3/+3
* 2to3: apply `dict` fixer.Charles Harris2013-04-061-4/+4
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* 2to3: Use absolute imports.Charles Harris2013-03-281-6/+6
* 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-1/+1
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-2/+7
* Merge pull request #376 from cgohlke/patch-2Ondřej Čertík2012-09-021-1/+1
|\
| * Allow long numbers in numpy.rec.array formats stringcgohlke2012-08-061-1/+1
* | FIX: simplify the import statementOndřej Čertík2012-08-311-2/+1
* | Fix returned copyJay Bourque2012-08-311-1/+5
|/
* Call view object's copy methodjayvius2012-07-171-2/+1
* fix previous commit to return copy of view instead of viewjayvius2012-07-171-13/+4
* Add ability to get view when selecting subset of fields.jayvius2012-07-171-0/+7
* ENH: Change datetime64 to use c_metadata instead of metadataMark Wiebe2012-05-101-3/+0
* Merge branch 'deprecate_array_field_access'Mark Wiebe2011-07-261-45/+27
|\
| * STY: Remove trailing whitespaceMark Wiebe2011-07-261-1/+1
| * STY: Updates for pull request feedback from Chuck and BenMark Wiebe2011-07-201-1/+5
| * BUG: dtype: comma-list dtype formats didn't accept M8[] parameterized dtypesMark Wiebe2011-07-191-46/+24
* | BUG: datetime: Various fixes for datetime arrays.Ben Walsh2011-07-191-2/+5
|/
* ENH: dtype-struct: Ensure alignment of nested struct dtypesMark Wiebe2011-06-221-3/+3