index
:
platform/upstream/python-numpy
accepted/tizen_5.0_unified
accepted/tizen_5.5_unified
accepted/tizen_5.5_unified_mobile_hotfix
accepted/tizen_5.5_unified_wearable_hotfix
accepted/tizen_6.0_unified
accepted/tizen_6.0_unified_hotfix
accepted/tizen_6.5_unified
accepted/tizen_7.0_unified
accepted/tizen_7.0_unified_hotfix
accepted/tizen_8.0_unified
accepted/tizen_9.0_unified
accepted/tizen_unified
accepted/tizen_unified_dev
master
sandbox/backup/numpy-1.15.0_20210104
sandbox/dh0128.kwak/numpy-1.16.6_20201231
sandbox/nmerinov/llvm
sandbox/wangbiao/qemu-5.2
tizen
tizen_5.0
tizen_5.5
tizen_5.5_mobile_hotfix
tizen_5.5_tv
tizen_5.5_wearable_hotfix
tizen_6.0
tizen_6.0_hotfix
tizen_6.5
tizen_7.0
tizen_7.0_hotfix
tizen_8.0
tizen_9.0
upstream
upstream-git
Domain: System / Base; Licenses: BSD-3-Clause;
Inki Dae <inki.dae@samsung.com>, Semun Lee <semun.lee@samsung.com>, Tae-Young Chung <ty83.chung@samsung.com>
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
numpy
/
f2py
/
src
Age
Commit message (
Expand
)
Author
Files
Lines
2017-05-09
ENH: Spelling fixes
Ville Skyttä
1
-1
/
+1
2017-05-02
MAINT: remove usage of NPY_CHAR from f2py
Julian Taylor
1
-4
/
+24
2015-04-24
MANT: Use Py_RETURN_NONE whenever Py_None is returned
Jaime Fernandez
1
-2
/
+1
2015-01-06
Merge pull request #5309 from rgommers/remove-f2py-deprecation
Charles Harris
1
-3
/
+0
2014-12-10
Merge pull request #5287 from chatcannon/reconcile-c-api-with-docs
Julian Taylor
1
-7
/
+10
2014-12-10
MAINT: cast PyArray_ITEMSIZE result to avoid warnings
Julian Taylor
1
-3
/
+3
2014-12-10
MAINT: Update printf statements in fortranobject.c
Chris Kerr
1
-5
/
+8
2014-11-23
MAINT: remove NPY_NO_DEPRECATED_API define from f2py.
Ralf Gommers
1
-3
/
+0
2014-11-16
MAINT: change place where NPY_NO_DEPRECATED_API is defined in f2py.
Ralf Gommers
2
-2
/
+3
2014-11-10
DEP: #declaring NPY_NO_DEPRECATED_API in fortranobject.h
Chris Kerr
1
-0
/
+2
2014-11-10
DEP: Replace NPY_CONTIGUOUS with NPY_ARRAY_C_CONTIGUOUS
Chris Kerr
1
-1
/
+1
2014-11-10
DEP: Corrected some type errors that appear when enabling NPY_NO_DEPRECATED_API
Chris Kerr
1
-7
/
+7
2014-11-10
DEP: Replaced NPY_[F,C]ARRAY with NPY_ARRAY_[F,C]ARRAY
Chris Kerr
1
-4
/
+4
2014-11-10
DEP: Using the internal PyArrayObject_fields API for the swap_arrays and dump...
Chris Kerr
1
-2
/
+5
2014-11-10
DEP: Replaced arr->descr, arr->flags and arr->base with the PyArray_* functions
Chris Kerr
2
-2
/
+2
2014-11-10
DEP: replaced arr->dimensions with PyArray_DIMS(arr) or PyArray_DIM(arr,i)
Chris Kerr
1
-11
/
+11
2014-11-10
DEP: replaced arr->data with PyArray_DATA
Chris Kerr
1
-1
/
+1
2014-11-10
DEP: Replaced arr->nd with PyArray_NDIM in fortranobject.c
Chris Kerr
1
-18
/
+18
2014-09-28
MAINT: f2py: rewrite fortran_doc
Lars Buitinck
1
-68
/
+124
2014-09-04
Changed the `goto fail` to a `return PyErr_NoMemory()`
Chris Kerr
1
-1
/
+4
2014-09-04
Add NULL check after malloc() in fortranobject.c
Chris Kerr
1
-0
/
+1
2014-02-20
Merge pull request #4315 from charris/fix-gh-2408
Charles Harris
1
-8
/
+6
2014-02-17
BUG: #2408, Fix f2py Python 3 error message string bug.
Charles Harris
1
-8
/
+6
2014-02-16
BUG: #4256: f2py, PyString_FromStringAndSize is undefined in Python3.
Charles Harris
1
-0
/
+5
2014-01-22
MAINT: fix some f2py related build warnings.
Ralf Gommers
1
-1
/
+1
2013-07-11
MAINT: Remove outdated version checks.
Charles Harris
1
-21
/
+0
2013-02-24
BUG: Choose a more unique PY_ARRAY_UNIQUE_SYMBOL in f2py.
Bradley M. Froehle
1
-1
/
+1
2012-11-17
ENH: f2py: generate docstrings in Numpy docstring format
Pauli Virtanen
1
-1
/
+1
2012-02-04
STY: f2py - replace macros in old_defines.h with new.
Charles Harris
2
-9
/
+9
2010-07-17
BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ...
Pauli Virtanen
2
-3
/
+3
2010-05-03
ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule
Charles Harris
2
-6
/
+6
2010-03-06
3K: f2py: port much of f2py C code to Py3
Pauli Virtanen
2
-6
/
+89
2010-03-06
BUG: f2py: ensure that ARRAY_ISCOMPATIBLE macro handles also booleans
Pauli Virtanen
1
-0
/
+1
2010-02-25
ENH: Add support for PyCapsule.
Charles Harris
2
-1
/
+70
2009-10-25
Introduced intent(align4|align8|align16) attributes. Fixes scipy ticket 794 a...
Pearu Peterson
2
-1
/
+24
2008-05-15
Changed an idiom of appending strings to a buffer. Fixes numpy ticket 792.
Pearu Peterson
1
-12
/
+39
2008-01-25
Catch wrong array sizes when the length of an array is 1.
Pearu Peterson
1
-7
/
+16
2007-08-21
Fix whitespace to conform to Python 3000 convention.
Stefan van der Walt
2
-667
/
+669
2006-10-30
Fix some reference-count problems in f2py with data-type objects.
Travis Oliphant
1
-12
/
+21
2006-07-08
Fix f2py and doc
Travis Oliphant
1
-1
/
+1
2006-07-08
More f2py changes
Travis Oliphant
1
-20
/
+20
2006-07-08
More fixes to f2py
Travis Oliphant
1
-4
/
+4
2006-07-08
Fix f2py to use new names
Travis Oliphant
2
-21
/
+21
2006-04-27
Fix missing error check.
Travis Oliphant
1
-0
/
+1
2006-03-08
Fix f2py to handle character arrays in common blocks
Travis Oliphant
2
-5
/
+28
2006-01-25
Fixed f2py bug in calculating dims vector when expected rank equals to array ...
Pearu Peterson
1
-29
/
+36
2006-01-24
Remove bad 'fix' for f2py
Travis Oliphant
1
-2
/
+4
2006-01-22
Comment change in fortranobject.c better.
Travis Oliphant
1
-0
/
+4
2006-01-22
Added LICENSE.txt to distribution. Fixed f2py check_and_fix_dimensions to not...
Travis Oliphant
1
-0
/
+14
2006-01-19
Fixed up PyArray_FromAny and friends for API --- recompile extensions...
Travis Oliphant
1
-1
/
+1
[next]