summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* BUG: fix numarray._capi compilationPauli Virtanen2010-02-211-1/+1
|
* STY: Remove unneeded import.Charles Harris2010-02-211-5/+0
|
* PY3: The izip function is no longer available in itertools. Be explicit aboutCharles Harris2010-02-211-16/+17
| | | | using itertools.izip to 2to3 can make the fix.
* WHT: Whitespace removal.Charles Harris2010-02-211-2/+1
|
* 3K: ENH: ma: fix str vs bytes and int issues in ma testsPauli Virtanen2010-02-213-8/+18
|
* BUG: ma: fix inoperative error state set/restorePauli Virtanen2010-02-211-5/+0
|
* BUG: ma: _check_fill_value shouldn't rely on implicit array() string castingPauli Virtanen2010-02-212-13/+14
| | | | | | | Since array([12345678.9, 'a']) == array(['12345678', 'a'], dtype='|S8') ie., automatic string conversion uses only the size of the minimal data type, not the size of the string representation, code should not rely on array() casting items implicitly to object arrays.
* 3K: ENH: core: support BOOL and VOID better in PEP 3118 buffersPauli Virtanen2010-02-213-12/+30
|
* 3K: ENH: core: void.item() -> byte array; simple memoryview -> BytesPauli Virtanen2010-02-211-16/+23
|
* 3K: ma: implement __rtruediv__, __rfloordiv__, __rpow__ for masked arraysPauli Virtanen2010-02-211-0/+12
|
* 3K: lib: implement __rtruediv__ for poly1dPauli Virtanen2010-02-211-0/+2
|
* 3K: core: mark int('0xff',16) test as known failure on Python3 -- we don't ↵Pauli Virtanen2010-02-211-0/+3
| | | | anyway support that call signature for all integer types even on Py2
* 3K: ma: solve some bytes vs. str issues in testsPauli Virtanen2010-02-212-18/+28
|
* 3K: ENH: ma: implement data-preserving __ifloordiv__ and __itruediv__Pauli Virtanen2010-02-211-0/+30
|
* 3K: ENH: make numpy.numarray to importPauli Virtanen2010-02-211-0/+3
|
* 3K: ENH: move numarray includes under numarray/include so that the 'numpy' ↵Pauli Virtanen2010-02-219-3/+3
| | | | directory does not confuse 2to3's relative import conversion
* 3K: ENH: make oldnumeric to import -- but don't implement ↵Pauli Virtanen2010-02-212-6/+21
| | | | oldnumeric.Unpickler as it's not straightforward to do
* 3K: ENH: core: follow Python in formatting negative zeros in (-0+x*j)Pauli Virtanen2010-02-211-0/+4
|
* 3K: lib: fix bytes vs str issues in testsPauli Virtanen2010-02-212-8/+11
|
* 3K: lib: zip is izip on Py3Pauli Virtanen2010-02-211-0/+4
|
* 3K: lib: missing_values in genfromtxt is never a basestring on Py3Pauli Virtanen2010-02-212-2/+2
|
* 3K: lib: fix sort(key=) issuePauli Virtanen2010-02-211-5/+3
|
* 3K: linalg: fix integer division issue and testsPauli Virtanen2010-02-212-2/+4
|
* 3K: polynomial: make tests to importPauli Virtanen2010-02-213-3/+0
|
* 3K: lib: poly1d __div__ -> __truediv__, and fix its doctestsPauli Virtanen2010-02-212-7/+9
|
* 3K: core: fix a few str vs bytes issues in testsPauli Virtanen2010-02-213-14/+20
|
* 3K: matrixlib: adapt to changes in str.translatePauli Virtanen2010-02-211-14/+26
|
* 3K: ENH: regenerate mtrand.c with a newer Cython, for better Python 3 ↵Pauli Virtanen2010-02-211-4686/+5426
| | | | compatibility
* 3K: core/numerictypes: fix handling of Python types, and recognize bytes as ↵Pauli Virtanen2010-02-211-7/+15
| | | | a Python type
* 3K: BUG: fix unravel_index integer divisionPauli Virtanen2010-02-211-1/+1
|
* 3K: ENH: ensure integer scalar types are hashable -- we don't automatically ↵Pauli Virtanen2010-02-211-8/+12
| | | | inherit the hash implementation from Python ints on 3K
* DEP: Fix more files for unittest deprecated functions. It isn't clear why theseCharles Harris2010-02-2112-206/+206
| | | | tests didn't issue deprecation warnings. Are they being run?
* DEP: Fix deprecation warnings in Python 3.1. The warnings come from the unittestCharles Harris2010-02-2011-434/+434
| | | | | | | | | module. The fix should be good for Python >= 2.4 and used the following sed script: s/\<failUnless\>/assertTrue/g s/\<failIf\>/assertFalse/g s/\<failUnlessEqual\>/assertEqual/g s/\<failUnlessRaises\>/assertRaises/g
* BUG: ensure Py_TYPE is available in _dotblas.c on Python 2.4 and 2.5Pauli Virtanen2010-02-201-0/+6
|
* BUG: fix a few missing includes that may cause problems on 64-bitPauli Virtanen2010-02-203-0/+5
|
* 3K: BUG: fix refcount error in npy_PyFile_DupPauli Virtanen2010-02-201-0/+1
|
* BUG: properly check the return value of numpy.core._internal._dtype_from_pep3118Pauli Virtanen2010-02-201-3/+10
|
* 3K: BUG: core: fix ucsnarrow.c:MyPyUnicode_New to work correctly on Py3Pauli Virtanen2010-02-201-0/+3
|
* BUG: fix a crash due to mixing PyUnicode and PyStringPauli Virtanen2010-02-201-1/+10
|
* 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reducePauli Virtanen2010-02-2010-9/+42
| | | | Instead, manually import reduce where necessary.
* BUG: another single-file compilation fixPauli Virtanen2010-02-201-0/+2
|
* BUG: lib: ensure 'bytes' is imported in io.pyPauli Virtanen2010-02-201-1/+1
|
* 3K: core: fix single-file compilationPauli Virtanen2010-02-201-0/+1
|
* 3K: Some remaining Py_TYPE issuesPauli Virtanen2010-02-202-2/+2
|
* 3K: lib: more str vs bytes issues in the lib/io loadtxt, savetxt and genfromtxtPauli Virtanen2010-02-205-67/+104
|
* ENH: compat: additional Py3 convenience functionsPauli Virtanen2010-02-201-3/+9
|
* 3K: lib: fix savetxtPauli Virtanen2010-02-201-9/+23
| | | | | | This will make savetxt open files in the 'wb' mode on Python 3. To allow using any sort of newlines (which are different e.g. on Windows), add a new 'newline' keyword.
* 3K: lib: fix some bytes vs. str issues in _iotools.py and io.py -- mainly ↵Pauli Virtanen2010-02-205-88/+143
| | | | genfromtxt
* 3K: lib: even more bytes/str fixes in format.py testsPauli Virtanen2010-02-201-6/+8
|
* 3K: lib: use BytesIO in test_ioPauli Virtanen2010-02-201-109/+115
|