summaryrefslogtreecommitdiff
path: root/numpy/lib/format.py
AgeCommit message (Expand)AuthorFilesLines
2018-02-05minor fix for python3 compatibilityDennis Weyland1-2/+2
2018-02-05python 2.7.5 bugfixDennis Weyland1-2/+5
2017-09-13ENH: Align data in np.save() at 64 bytes (#9025)John Zwinck1-22/+29
2017-03-25MAINT: Remove asbytes where a b prefix would sufficeEric Wieser1-1/+1
2016-09-02ENH: Add stacklevel to all (or almost all) our function callsSebastian Berg1-2/+2
2016-05-31BUG: Fixes to reading and writing of empty arrays, and in particular arrays w...Erik M. Bray1-11/+20
2016-05-09BUG: Cast size to int64 when loading from archivedrasmuss1-1/+1
2015-11-07MAINT: Dictionary litteralRémy Léone1-2/+1
2015-04-18ENH: add options for disabling use of pickle in load/savePauli Virtanen1-4/+16
2015-04-05BUG: don't ignore version passed to format.write_arrayBlake Griffith1-11/+9
2015-04-01BUG: Make read_array_header_* return resultsBlake Griffith1-2/+2
2015-03-08STY: fold long linesPauli Virtanen1-2/+4
2015-03-08BUG: enable working around pickle compatibility issues on Py3 in npy filesPauli Virtanen1-4/+22
2015-01-04DOC: update npy-format NEP and lib/format.py with version 2.0 description.Ralf Gommers1-0/+13
2014-12-05Change pronoun in doc string from "his" to gender-neutral "their"Bob Poekert1-1/+1
2014-10-13BUG: Fix writing of intrinsic long integers in python2 npy files.Charles Harris1-3/+4
2014-10-12BUG: Make python2 *.npy files readable in python3.Charles Harris1-1/+41
2014-07-31STY: Make files in numpy/lib PEP8 compliant.Charles Harris1-51/+51
2014-06-02ENH: add storage format 2.0 with 4 byte header length sizeJulian Taylor1-32/+139
2014-02-11ENH: add tobytes and stop using tostring in documentationJulian Taylor1-2/+2
2013-12-11MAINT: Introduced _read_array functionMax Sperlich1-25/+37
2013-12-09MAINT: Better handling of very small chunksMax Sperlich1-4/+5
2013-12-08TST: Adds test case for Issue 4093Max Sperlich1-0/+4
2013-12-08BUG: Fixes Python3 compatibilityMax Sperlich1-1/+1
2013-12-08BUG: fix loading from compressed .npz (Issue 4093)Max Sperlich1-6/+9
2013-11-26ENH: Use nditer in numpy.save to stream bytes to custom file objectsOlivier Grisel1-4/+13
2013-11-08When reading file in chunks, buffer_size < dtype.itemsize, ensure at least on...Luke Carmichael1-1/+1
2013-08-18STY: Giant comma spacing fixup.Charles Harris1-3/+3
2013-08-04Fix doc typoMartin Spacek1-1/+1
2013-06-12adjust the optimal IO buffer size for npz filesBartosz Telenczuk1-8/+11
2013-06-12Chunk reads in format.read_array.Alex Ford1-3/+14
2013-05-02MAINT: Apply 2to3 idioms fixer.Charles Harris1-2/+1
2013-04-132to3: Apply basestring fixer.Charles Harris1-1/+1
2013-04-132to3: Apply the `numliterals` fixer and skip the `long` fixer.Charles Harris1-1/+1
2013-04-062to3: apply `dict` fixer.Charles Harris1-1/+1
2013-04-062to3: Apply `print` fixer.Charles Harris1-1/+1
2013-04-06Merge pull request #3191 from charris/2to3-apply-imports-fixerCharles Harris1-4/+7
2013-04-03Merge pull request #460 from endolith/regex_formattingCharles Harris1-1/+1
2013-04-022to3: Apply `imports` fixer.Charles Harris1-4/+7
2013-03-282to3: Use absolute imports.Charles Harris1-1/+1
2013-03-19DOC: regex-assisted fixes of definition list formattingendolith1-1/+1
2013-03-012to3: Put `from __future__ import division in every python file.Charles Harris1-0/+1
2013-02-262to3: Use modern exception syntax.Charles Harris1-2/+2
2010-07-31DOC: wiki merge, npyio, format and function_basergommers1-24/+28
2010-02-203K: lib: fix some bytes/str issues in _format.py and its testsPauli Virtanen1-5/+12
2010-02-20ENH: lib: write fortran-contiguous data to files using arr.T.tofile instead o...Pauli Virtanen1-4/+5
2010-02-203K: lib: bytes vs. str fixes in lib.format and lib.ioPauli Virtanen1-4/+4
2009-12-063K: rename compat.isfile to isfileobj to avoid confusion with os.pathPauli Virtanen1-3/+3
2009-12-063K: lib: some fixes to lib.format on strings vs bytes; and file objectsPauli Virtanen1-6/+6
2009-10-02Docstring update: libPauli Virtanen1-35/+114