summaryrefslogtreecommitdiff
path: root/doc/source/reference
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #14954 from mattip/test-extending-cffiCharles Harris2019-11-272-0/+25
|\ \ | | | | | | TST. API: test using distributions.h via cffi
| * | DOC: document the CFFI examplemattip2019-11-222-0/+25
| | |
* | | Merge pull request #14948 from mattip/document-randomCharles Harris2019-11-272-41/+111
|\ \ \ | | | | | | | | DOC, API: add random.__init__.pxd and document random.* functions
| * | | DOC: fixes from reviewmattip2019-11-212-7/+18
| | | |
| * | | DOC, API: add numpy.random.__index__.pxd and document numpy.random.* funcsmattip2019-11-212-41/+100
| |/ /
* | | Fix typosBrian Wignall2019-11-251-1/+1
| | |
* | | Merge pull request #14718 from eric-wieser/disable-Q_-_m_castingMatti Picus2019-11-251-3/+3
|\ \ \ | | | | | | | | API: Forbid Q<->m safe casting
| * | | API: Forbid Q<->m safe castingEric Wieser2019-10-161-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | That is, uint64 <-> timedelta64. Allowing this casting was weird, because Q<->q is forbidden, yet q and m are both int64. This fixes gh-12927
* | | | Merge pull request #14732 from mattip/refguide-rstCharles Harris2019-11-231-3/+3
|\ \ \ \ | |_|/ / |/| | | TST: run refguide-check on rst files in doc/*
| * | | TST: run refguide-check on rst files in doc/*mattip2019-10-171-3/+3
| |/ /
* | | DOC, MAINT: fix documentation, remove __init__.pymattip2019-11-206-8/+8
| | |
* | | API: restructure and document numpy.random C-API (#14604)Matti Picus2019-11-1911-109/+247
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * API: restructure and document numpy.random C-API * DOC: fix bad reference * API: ship, document, and start to test numpy.random C-API examples * API, DOC, TST: fix tests, refactor documentation to include snippets * BUILD: move public headers to numpy/core/include/numpy/random * TST: ignore DeprecationWarnings in setuptools and numba * DOC: document the C-API as used from Cython
* | MAINT: Remove uses of scalar aliasesEric Wieser2019-11-132-2/+2
| | | | | | | | Relates to gh-6103
* | Merge pull request #13794 from WarrenWeckesser/new-mvhgMatti Picus2019-10-201-0/+1
|\ \ | | | | | | ENH: random: Add the multivariate hypergeometric distribution.
| * | DOC: random: Add entry for multivariate_hypergeometric to the Generator docs.Warren Weckesser2019-10-181-0/+1
| | |
* | | Merge pull request #14699 from mattip/doc-warningsRalf Gommers2019-10-188-80/+94
|\ \ \ | | | | | | | | MAINT: reduce the number of doc build warnings
| * | | DOC: convert `None` to bare None or ``None``mattip2019-10-157-21/+21
| | | |
| * | | DOC: fix build failuremattip2019-10-151-3/+3
| | | |
| * | | DOC: add numpy.shape to indexmattip2019-10-151-0/+1
| | | |
| * | | DOC: fix function argument definitions and add vertical space around macrosmattip2019-10-151-55/+68
| | | |
| * | | DOC: fix output argument referencemattip2019-10-151-1/+1
| | | |
| * | | DOC: fix `None` reference from pythonmattip2019-10-152-9/+9
| | |/ | |/|
* | | Merge pull request #14723 from bsipocz/doc_ma_genericRalf Gommers2019-10-181-85/+85
|\ \ \ | |_|/ |/| | DOC: cleaning up examples in maskedarray.generic
| * | DOC: Adding two more fixes to make doctesting passBrigitta Sipocz2019-10-171-1/+4
| | |
| * | DOC: avoid using random array in exampleBrigitta Sipocz2019-10-151-6/+5
| | |
| * | DOC: Updating results in examplesBrigitta Sipocz2019-10-151-80/+78
| | |
| * | DOC: fix example to close #5406Brigitta Sipocz2019-10-151-2/+2
| |/
* | Merge pull request #14608 from mattip/random-apiRalf Gommers2019-10-176-59/+48
|\ \ | |/ |/| API: rearrange the cython files in numpy.random
| * TEST, DOC: fixes from reviewmattip2019-10-172-13/+13
| |
| * DOC: typos from reviewmattip2019-10-151-1/+1
| |
| * DOC: clean up for moved references, remove ISeedSequencemattip2019-10-136-48/+37
| |
| * API: move bit_generator and generator to be privatemattip2019-10-113-5/+5
| |
* | Fix misc_utils pageDavid Stansby2019-10-062-4/+9
| |
* | Try adding new misc_utils pageDavid Stansby2019-10-042-2/+8
| |
* | Add Extension to docsDavid Stansby2019-10-031-40/+14
|/
* DOC: Change the checkmark to 'Y'.Warren Weckesser2019-09-251-28/+27
| | | | | | The Unicode checkmark doesn't necessarily have the same width as the ASCII characters, even when rendered with a fixed-width font, so the casting table can be misaligned when the checkmark is used.
* DOC: Document the NPY_SCALARKIND values as C variables.MSeifert042019-09-221-8/+15
| | | | | Currently the ":c:data:" links could not resolve these because the values were not explicitly documented.
* Merge pull request #14567 from rgommers/fix-publicapi-testCharles Harris2019-09-211-5/+5
|\ | | | | DEP: remove deprecated (and private) numpy.testing submodules.
| * DEP: remove deprecate (and private) numpy.testing submodules.Ralf Gommers2019-09-211-5/+5
| | | | | | | | | | | | | | | | | | | | | | Removes these files that were deprecated since 1.15.0: - numpy/testing/decorators.py - numpy/testing/noseclasses.py - numpy/testing/nosetester.py This also resolves a failure in the recently introduced tests in `test_public_api.py` (see gh-14454). Closes gh-14566
* | DOC: Fix code that generates the table in the 'Casting Rules' section.Warren Weckesser2019-09-201-33/+35
|/
* DOC: Updates to nditer usage instructionsJoseph Fox-Rabinovitz2019-09-181-26/+55
| | | | | More intuitive use of iterators Context manager introduction version noted explicitly
* Merge pull request #14498 from mattip/random-namespaceRalf Gommers2019-09-153-13/+0
|\ | | | | MAINT: remove the entropy c-extension module
| * DOC: remove random.entropy from docsmattip2019-09-142-7/+0
| |
| * DOC: removed random.entropy from documentationmattip2019-09-141-6/+0
| |
* | DOC: Add backslashes so the function renders correctly with sphinx.MSeifert042019-09-131-3/+3
|/
* Merge pull request #14475 from hypercubestart/add-timedelta64-signatureMatti Picus2019-09-131-131/+30
|\ | | | | DOC: add timedelta64 signature
| * DOC: include NAT value and remove Differences between 1.6 and 1.7 Datetimes ↵Andrew Liu2019-09-121-131/+28
| | | | | | | | section
| * DOC: add timedelta64 signatureAndrew Liu2019-09-101-1/+3
| |
* | DOC: Fix reference NPY_ARRAY_OWNDATA instead of NPY_OWNDATA.MSeifert042019-09-121-1/+1
|/
* Merge pull request #14393 from ahaldane/fix_fieldless_view_itemsizeMatti Picus2019-09-081-0/+4
|\ | | | | BUG: view with fieldless dtype should raise if itemsize != 0