summaryrefslogtreecommitdiff
path: root/numpy/core/_internal.py
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #12382 from shoyer/finish-set-moduleCharles Harris2018-11-141-0/+3
|\
| * ENH: set correct __module__ for objects in numpy's public APIStephan Hoyer2018-11-131-0/+3
* | MAINT: Improve error message for legal but unsupported PEP3118 typesEric Wieser2018-11-131-0/+11
|/
* MAINT: Extract `_is_from_ctypes` to a header so that it can be sharedEric Wieser2018-10-251-3/+3
* MAINT: remove unused importsEmil Hessman2018-09-291-2/+1
* MAINT: refactor design of recursive closures (#11910)Matti Picus2018-09-161-1/+33
* Merge pull request #11765 from eric-wieser/ctypes-docsMatti Picus2018-08-181-3/+42
|\
| * DOC: Move documentation from `help(ndarray.ctypes)` to `help(some_array.ctypes)`Eric Wieser2018-08-171-3/+42
* | BUG: Fixes for unicode field names in Python 2 (#11642)Chris Billington2018-08-161-2/+2
|/
* MAINT: Improve memory usage in PEP3118 format parsingEric Wieser2018-07-231-33/+33
* BUG: Work around bugs in pep3118 ctypes by falling back on np.dtype(type(ctyp...Eric Wieser2018-06-081-0/+13
* BUG: Instead of returning garbage, make dtype.descr error for out-of-order fi...Eric Wieser2018-01-131-0/+4
* BUG: add `__ne__` method to dummy_ctype class.Srinivas Reddy Thatiparthy2017-08-261-0/+2
* 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
|\