summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libarray.tex
Commit message (Collapse)AuthorAgeFilesLines
* Delete the LaTeX doc tree.Georg Brandl2007-08-151-241/+0
|
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-4/+4
| | | | | | | | | | | | | | | | | | | | number of tests, all because of the codecs/_multibytecodecs issue described here (it's not a Py3K issue, just something Py3K discovers): http://mail.python.org/pipermail/python-dev/2006-April/064051.html Hye-Shik Chang promised to look for a fix, so no need to fix it here. The tests that are expected to break are: test_codecencodings_cn test_codecencodings_hk test_codecencodings_jp test_codecencodings_kr test_codecencodings_tw test_codecs test_multibytecodec This merge fixes an actual test failure (test_weakref) in this branch, though, so I believe merging is the right thing to do anyway.
* Patch #1026384: fix two common typo's:Johannes Gijsbers2004-09-111-3/+3
| | | | | | | - accomodate -> accommodate - occured -> occurred Thanks George Yoshida!
* SF feature request #992967: array.array objects should support sequences.Raymond Hettinger2004-08-291-2/+6
| | | | Made the constructor accept general iterables.
* SF feature request #686323: Minor array module enhancementsRaymond Hettinger2004-03-141-4/+7
| | | | | | | array.extend() now accepts iterable arguments implements as a series of appends. Besides being a user convenience and matching the behavior for lists, this the saves memory and cycles that would be used to create a temporary array object.
* Fix array.array.insert(), so that it treats negative indices asWalter Dörwald2003-05-181-1/+2
| | | | | being relative to the end of the array, just like list.insert() does. This closes SF bug #739313.
* Fixed spacing and unbalanced brackets or parenthesis.Raymond Hettinger2003-05-101-1/+1
|
* SF 539024, Fix broken link to numpyNeal Norwitz2002-04-041-1/+1
|
* Fix up the documentation of the type codes to give both the C and PythonFred Drake2002-04-011-17/+24
| | | | | | | | | types for each code, and give the actual C types. Clarified the support for slice operations and note when some TypeError exceptions are raised. This closes SF bugs 518767 and 536469.
* Patch 520694: arraymodule.c improvements:Martin v. Löwis2002-03-011-11/+29
| | | | | | - make array.array a type - add Py_UNICODE arrays - support +=, *=
* Use the \note and \warning macros where appropriate.Fred Drake2001-10-201-2/+2
|
* Fix description of buffer_info(), and add a note that there is a betterFred Drake2001-08-011-6/+15
| | | | | | way... This closes SF bug #444842.
* Fix up a few style nits -- avoid "e.g." and "i.e." -- these makeFred Drake2001-07-061-1/+1
| | | | | translation more difficult, as well as reading the English more difficult for non-native speakers.
* Added link to HTML version of the NumPy documentation.Fred Drake2000-12-111-2/+4
| | | | This closes bug #124943.
* Make all the \seemodule explanations consistent: start with a capitalizedFred Drake2000-10-181-2/+4
| | | | | | letter and end with proper punctuation. "Documenting Python" will be updated accordingly so that this will be editorial policy for the Python documentation.
* Update the links to the NumPy website and documentation, based on aFred Drake2000-10-171-6/+5
| | | | comment from Janko Hauser <jhauser@ifm.uni-kiel.de>.
* added count, extend, index, pop and remove to arraymodulePeter Schneider-Kamp2000-07-311-0/+23
|
* Merged changes from the 1.5.2p2 release.Fred Drake2000-04-031-5/+12
| | | | (Very rough.)
* byteswap() method: Tell *what* exception gets raised when the typeFred Drake1999-06-291-2/+3
| | | | cannot be byteswapped.
* Fix markup typo.Fred Drake1999-04-211-1/+1
|
* Added "See also" reference to xdrlib.Fred Drake1999-04-211-10/+11
| | | | Markup nits.
* Nits.Fred Drake1998-12-101-11/+11
|
* New section header style.Fred Drake1998-08-101-1/+2
| | | | Fix up a few synopses.
* Adjusted to use the new module synopsis support macros.Fred Drake1998-07-231-2/+4
|
* Lighten up tables.Fred Drake1998-04-111-1/+1
|
* Remove all uses of \sectcode; we can now use logical markup everywhere.Fred Drake1998-04-041-1/+1
|
* Use {seealso} environment to refer to the struct module.Fred Drake1998-04-031-38/+45
| | | | | | | | Document ArrayType. Use {memberdesc} and {methoddesc} environments, as appropriate. Minor nits.
* Change "\," to just "," in function signatures. This is easier to maintain,Fred Drake1998-03-171-4/+4
| | | | | works better with LaTeX2HTML, and allows some simplification of the python.sty macros.
* Deprecate the read() and write() methods.Fred Drake1998-02-271-8/+4
| | | | Don't refer to them from the fromfile() and tofile() methods.
* Updates by AMK.Fred Drake1998-02-271-13/+39
| | | | Markup corrected, logical markup.
* Remove all \bcode / \ecode cruft; this is no longer needed. See previousFred Drake1998-02-131-3/+3
| | | | | | | | | checkin of myformat.sty. Change "\renewcommand{\indexsubitem}{(...)}" to "\setindexsubitem{(...)}" everywhere. Some other minor nits that I happened to come across.
* Added missing "\" to "\var{address}, var{length}" in buffer_info() description.Fred Drake1997-12-291-1/+1
|
* Fixed index module reference.Fred Drake1997-12-161-1/+1
|
* Added buffer_info() docs.Guido van Rossum1997-08-141-0/+10
|
* AMK's megapatch:Guido van Rossum1997-07-171-0/+1
| | | | | | | * \bcode, \ecode added everywhere * \label{module-foo} added everywhere * A few \seealso sections added. * Indentation fixed inside verbatim in lib*tex files
* Added unsigned data formats (B, H, I, L).Guido van Rossum1997-01-031-1/+8
|
* restructured library manual accordiung to functional groupGuido van Rossum1995-03-281-0/+3
|
* mass changes; fix titles; add examples; correct typos; clarifications;Guido van Rossum1995-03-171-3/+5
| | | | unified style; etc.
* changes (suggested) by Soren LarsenGuido van Rossum1995-03-071-2/+2
|
* Lots of small corrections by Andrew Kuchling (plus all new rotor docs)Guido van Rossum1994-08-081-3/+3
|
* Restructured library documentationGuido van Rossum1994-01-021-0/+109