summaryrefslogtreecommitdiff
path: root/numpy/ctypeslib.py
Commit message (Expand)AuthorAgeFilesLines
* DEP: remove NPY_ARRAY_UPDATEIFCOPY, deprecated in 1.14 (#20589)Matti Picus2021-12-181-2/+1
* Merge pull request #17530 from BvB93/fspathCharles Harris2021-10-091-2/+11
|\
| * DOC: Fixed a formatting issueBas van Beek2020-10-101-0/+1
| * DOC: Added a `versionchanged` noteBas van Beek2020-10-101-0/+4
| * ENH: Allow `ctypeslib.load_library` to take any path-like objectBas van Beek2020-10-101-2/+6
* | ENH: Use new argument parsing for array creation functionsSebastian Berg2021-03-181-2/+2
* | MAINT: Add `as_ctypes_type` to `np.ctypeslib.__all__`Bas van Beek2021-02-011-1/+2
* | DOC: Numpydoc warning incorrect underline length.Matthias Bussonnier2021-01-311-1/+1
|/
* API: Remove `np.ctypeslib.ctypes_load_library`Eric Wieser2020-08-201-6/+2
* MAINT: Chain some exceptions. (#16418)Zuhair Ali-Khan2020-06-041-4/+4
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
* Apply suggestions from code reviewMatti Picus2019-09-041-1/+1
* BUG: test, fix regression in converting to ctypesmattip2019-08-281-6/+9
* Merge remote-tracking branch 'upstream/master' into fix-if-fieldsEric Wieser2019-08-191-22/+158
|\
| * MAINT: Remove an unnessary backslash between two string literalsMSeifert042019-07-011-1/+1
| * DOC: Add as_ctypes_type to the documentationEric Wieser2019-04-151-4/+8
| * DEV: cleanup imports and some assignments (from LGTM)mattip2019-03-171-1/+1
| * ENH: Add np.ctypeslib.as_ctypes_type(dtype), improve `np.ctypeslib.as_ctypes`Eric Wieser2019-01-131-18/+150
| * BUG: fix segfault in ctypeslib with obj being collectedAnthony Sottile2018-12-161-1/+1
| * TST, DOC: enable refguide_checkTyler Reddy2018-12-141-1/+1
* | MAINT: Improve ndpointer.__name__ for structured types with 0 fieldsEric Wieser2019-08-191-1/+1
|/
* BUG/ENH: Fix use of ndpointer in return valuesEric Wieser2018-11-211-20/+37
* BUG: Fix inconsistent cache keying in ndpointerEric Wieser2018-11-191-11/+20
* MAINT: remove unused stdlib importsEmil Hessman2018-09-301-1/+1
* HTTP -> HTTPS, and other linkrot fixesMike Toews2018-06-161-1/+1
* BUG: Remove fragile use of __array_interface__ in ctypeslib.as_arrayEric Wieser2018-05-261-104/+29
* DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with WRITEBA...Matti Picus2017-11-081-1/+2
* BUG: KeyboardInterrupt is swallowed all over the placeEric Wieser2017-06-031-1/+1
* DOC: change Numpy to NumPy in dosctrings and commentsPierre de Buyl2016-09-061-1/+1
* ENH: Add stacklevel to all (or almost all) our function callsSebastian Berg2016-09-021-1/+1
* fix an English typoYinon Ehrlich2016-06-201-1/+1
* [PATCH] Make _pointer_type_cache functionalMeet Udeshi2016-02-231-1/+1
* DOC: fixing some minor nitpicks. string to str, can't to cannot.jason king2015-10-051-3/+3
* DOC: first attempt at documenting load_library.jason king2015-09-121-0/+27
* BUG: add module extensions to load_library search listJulian Taylor2013-06-251-11/+5
* MAINT: Apply 2to3 idioms fixer.Charles Harris2013-05-021-1/+1
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* Merge pull request #3178 from charris/2to3-apply-import-fixernjsmith2013-04-021-1/+1
|\
| * 2to3: Use absolute imports.Charles Harris2013-03-281-1/+1
* | BUG: Raise immediate error in ctypes.load_library when library is bad.Charles Harris2013-04-011-8/+9
|/
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
* 2to3: Use modern exception syntax.Charles Harris2013-02-261-1/+1
* DOC/FIX: fix example in ctypeslib module documentationValentin Haenel2013-02-011-2/+2
* BUG: defer numpy.distutils import in ctypeslib.Ralf Gommers2011-07-151-1/+1
* BUG: deal with shared lib extension in a single place. Fix ctypes.load_library.rgommers2011-06-231-1/+10
* STY: Fix up some two line old-style exceptions.Charles Harris2011-04-051-5/+5
* STY: Update exception styles, trickier ones.Charles Harris2011-04-051-3/+3
* STY: Update exception style, easy ones.Charles Harris2011-04-051-3/+3
* BUG: Fix exception handling for python 3k.Neil Muller2010-11-201-4/+4
* Add capability to ctypeslib to convert a pointer to memory to an array of a p...Travis Oliphant2010-02-281-4/+31