index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_operator.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-102088 Optimize iter_index itertools recipe (GH-102360)
Stefan Pochmann
2023-03-02
1
-0/+3
*
bpo-44019: Add test_all_exported_names for operator module (GH-29124)
Dong-hee Na
2021-10-21
1
-0/+12
*
bpo-44019: Implement operator.call(). (GH-27888)
Antony Lee
2021-09-24
1
-0/+12
*
bpo-44558: Match countOf `is`/`==` treatment to c (GH-27007)
Rupert Tombs
2021-07-07
1
-0/+5
*
bpo-44558: Make the implementation consistency of operator.indexOf (GH-27012)
Dong-hee Na
2021-07-05
1
-0/+3
*
bpo-40275: Use new test.support helper submodules in tests (GH-21448)
Hai Shi
2020-08-03
1
-2/+6
*
bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...
Serhiy Storchaka
2020-06-22
1
-0/+7
*
bpo-35664: Optimize operator.itemgetter (GH-11435)
Raymond Hettinger
2019-01-07
1
-0/+13
*
Issue #26822: itemgetter, attrgetter and methodcaller objects no longer
Serhiy Storchaka
2016-04-23
1
-0/+9
|
\
|
*
Issue #26822: itemgetter, attrgetter and methodcaller objects no longer
Serhiy Storchaka
2016-04-23
1
-0/+9
*
|
Issue #24379: Revert the operator.subscript patch (dccc4e63aef5) pending res...
Raymond Hettinger
2015-11-02
1
-33/+0
*
|
Issue #24379: Add operator.subscript() as a convenience for building slices.
Raymond Hettinger
2015-08-17
1
-0/+33
*
|
Closes #20544: use specific asserts in operator tests.
Antoine Pitrou
2015-07-26
1
-25/+25
|
/
*
Issue #22955: Fixed test_operator. It left Python implementation in
Serhiy Storchaka
2015-05-20
1
-4/+0
*
Issue #22955: attrgetter, itemgetter and methodcaller objects in the operator
Serhiy Storchaka
2015-05-20
1
-0/+109
*
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
Benjamin Peterson
2014-04-10
1
-0/+11
*
Issue #16694: Add a pure Python implementation of the operator module.
Antoine Pitrou
2013-04-20
1
-32/+59
*
Issue #16148: implemented PEP 424
Armin Ronacher
2012-10-06
1
-0/+25
*
#9424: Replace deprecated assert* methods in the Python test suite.
Ezio Melotti
2010-11-20
1
-3/+3
*
Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou.
Antoine Pitrou
2010-10-31
1
-3/+6
*
convert old fail* assertions to assert*
Benjamin Peterson
2009-06-30
1
-136/+136
*
As discussed on python-dev, remove several operator functions
Raymond Hettinger
2009-01-26
1
-52/+0
*
#2621 rename test.test_support to test.support
Benjamin Peterson
2008-05-20
1
-3/+3
*
Whoops, I missed a few more places that were using slicing from the operator ...
Neal Norwitz
2008-03-17
1
-26/+0
*
Merged revisions 61003-61033 via svnmerge from
Christian Heimes
2008-02-24
1
-0/+38
*
Merged revisions 60124-60142 via svnmerge from
Christian Heimes
2008-01-20
1
-4/+4
*
Patch by Christian Heimes to change self.assert_(x == y) into
Guido van Rossum
2007-07-11
1
-16/+16
*
Merged revisions 56125-56153 via svnmerge from
Guido van Rossum
2007-07-03
1
-2/+2
*
Merged revisions 55007-55179 via svnmerge from
Guido van Rossum
2007-05-07
1
-7/+7
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-0/+6
*
Remove isCallable() and sequenceIncludes() from the operator module.
Collin Winter
2007-03-21
1
-13/+0
*
Merged revisions 53623-53858 via svnmerge from
Thomas Wouters
2007-02-23
1
-0/+2
*
Fix most trivially-findable print statements.
Guido van Rossum
2007-02-09
1
-1/+1
*
Rip out 'long' and 'L'-suffixed integer literals.
Guido van Rossum
2007-01-15
1
-1/+1
*
- patch #1600346 submitted by Tomer Filiba
Jack Diederich
2006-11-28
1
-1/+1
*
Get rid of remnants of integer division
Neal Norwitz
2006-03-24
1
-8/+0
*
adding in-place operators to the operator module.
Armin Rigo
2005-12-29
1
-0/+47
*
SF patch #1390657:
Armin Rigo
2005-12-29
1
-0/+40
*
operator.itemgetter() and operator.attrgetter() now support extraction
Raymond Hettinger
2005-03-09
1
-5/+31
*
Add error checks for the bz2, cStringIO and operator modules.
Walter Dörwald
2004-11-01
1
-0/+95
*
Guido grants a Christmas wish:
Raymond Hettinger
2003-12-17
1
-1/+1
*
As discussed on python-dev, added two extractor functions to the
Raymond Hettinger
2003-12-01
1
-0/+39
*
SF patch #670423: Add missing identity tests to operator.c
Raymond Hettinger
2003-01-18
1
-0/+11
*
Added __pow__(a,b) to the operator module. Completes the pattern of
Raymond Hettinger
2002-08-19
1
-0/+6
*
Get rid of relative imports in all unittests. Now anything that
Barry Warsaw
2002-07-23
1
-1/+1
*
Change the PyUnit-based tests to use the test_main() approach. This
Fred Drake
2001-09-20
1
-1/+6
*
The first batch of changes recommended by the fixdiv tool. These are
Guido van Rossum
2001-09-04
1
-1/+1
*
Added tests for rich comparison operator functions.
Fred Drake
2001-08-11
1
-78/+212
*
Added tests for operator.floordiv() and operator.truediv().
Fred Drake
2001-08-09
1
-0/+2
*
Update the code to better reflect recommended style:
Fred Drake
2000-12-12
1
-5/+5
[next]