10000 [WIP] backport from master to the 1.7.x release branch by certik · Pull Request #439 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

[WIP] backport from master to the 1.7.x release branch #439

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 35 commits into from
Sep 16, 2012
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a1561c2
[FIX] Add missing header so separate compilation works again
njsmith Jul 18, 2012
d72280f
Fix tests for empty shape, strides and suboffsets on Python 3.3
cgohlke Jul 29, 2012
470486b
Copy bytes object when unpickling an array
rlamy Jul 31, 2012
a022015
Re-enable unpickling optimization for large py3k bytes objects.
rlamy Aug 3, 2012
d67785b
FIX: Fixes the PyUnicodeObject problem in py-3.3
certik Jul 27, 2012
8141e1e
FIX: Make sure the tests produce valid unicode
certik Aug 3, 2012
d5d6894
Fix memory leak in concatenate.
Jul 30, 2012
31660d0
Follow the C guidelines
certik Aug 3, 2012
99c9397
Use PyUnicode_DecodeUTF32()
certik Aug 3, 2012
77da3f8
Allow long numbers in numpy.rec.array formats string
cgohlke Aug 6, 2012
24da7f6
Add test for long numbers in numpy.rec.array formats string
cgohlke Aug 7, 2012
5cb80f8
Add test for long number in shape specifier of dtype string
cgohlke Aug 8, 2012
fbad4a7
Remove test_recarray_from_long_formats
cgohlke Aug 8, 2012
3930881
BUG: fix bento build.
cournape Aug 10, 2012
416af9a
pavement.py: rename "yop" to "atlas"
certik Aug 14, 2012
7583adc
MAINT: silence DeprecationWarning in np.safe_eval().
Aug 22, 2012
996a9fb
FIX: bug in np.where and recarray swapping
certik Aug 30, 2012
124a608
Fix returned copy
jayvius Aug 31, 2012
f65ff87
FIX: simplify the import statement
certik Aug 31, 2012
7b5dba0
BUG: Fix ticket #1588/gh issue #398, refcount error in clip
mwiebe Aug 31, 2012
1ee4a00
BUG: Add a test for Ticket #1588
certik Aug 31, 2012
ca29849
BUG: Add a test for Ticket #2189
certik Aug 31, 2012
2f28db6
FIX: Add a test for Ticket #2066
certik Aug 31, 2012
5a471b5
Improve ndindex execution speed.
stefanv Aug 27, 2012
3dc3b1b
Retain backward compatibility. Enforce C order.
stefanv Sep 2, 2012
6e3e289
FIX: Regenerate mtrand.c with Cython 0.17
certik Sep 2, 2012
cb0de72
REF: remove unused imports in bscript.
cournape Aug 26, 2012
095a3ab
BUG: forgot to build _dotblas in bento build.
cournape Aug 26, 2012
6da087e
BUG: fix custom post_check.
cournape Aug 27, 2012
07e02d0
BUG: fix npymath install location.
cournape Sep 3, 2012
8460514
BUG: Fix for issues #378 and #392
87 Sep 6, 2012
9ee9984
TST: Add extra test for multidimensional inserts.
87 Sep 6, 2012
65ec87e
TST: Add test for boolean insert
87 Sep 7, 2012
d01354e
FIX: loosen numerical tolerance in test_pareto()
njsmith Sep 7, 2012
fcacdcc
FIX: use py24-compatible version of virtualenv on Travis
njsmith Sep 7, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove test_recarray_from_long_formats
  • Loading branch information
cgohlke authored and certik committed Sep 12, 2012
commit fbad4a7dad0fc02a17d7cfcb6dea88ce50ea49b5
8 changes: 0 additions & 8 deletions numpy/core/tests/test_records.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import sys
from os import path
import numpy as np
from numpy.testing import *
Expand Down Expand Up @@ -112,13 +111,6 @@ def test_fromrecords_with_explicit_dtype(self):
assert_equal(a.b, ['a', 'bbb'])
assert_equal(a[-1].b, 'bbb')

@dec.skipif(sys.version_info[0] > 2)
def test_recarray_from_long_formats(self):
# Pull request #376
a = [[1]]
ra = np.rec.array(a, shape=1, formats='(1L, 1L)i4')
assert_equal(a, ra.f0[0])


class TestRecord(TestCase):
def setUp(self):
Expand Down
0