summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bytes.py
Commit message (Expand)AuthorAgeFilesLines
* Enabled fromhex('') test for bytesChristian Heimes2008-01-301-3/+1
* Removed unused importChristian Heimes2008-01-301-1/+0
* Patch #1972 by Antoine Pitrou: improve bytes and bytearray testsChristian Heimes2008-01-301-436/+470
* Fixed #1969: split and rsplit in bytearray are inconsistentChristian Heimes2008-01-301-1/+10
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-11/+11
* Issue #1283: Allow any iterable of integers to be passed toAlexandre Vassalotti2007-12-041-0/+18
* Removed some leftovers from the str8 daysChristian Heimes2007-11-221-3/+0
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-158/+158
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-203/+258
* Patch 1171 by mfenniak -- allow subclassing of bytes.Guido van Rossum2007-11-031-2/+81
* Sort the method lists for str8 and bytes so differences are more apparent.Guido van Rossum2007-10-261-12/+10
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-241-31/+31
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-191-1/+1
* For PEP3137: Adds missing methods to the mutable PyBytes object (soonGregory P. Smith2007-10-161-10/+38
* Patch #1049 by Thomas Lee.Guido van Rossum2007-10-091-5/+7
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-8/+8
* Bug # 1125 (my code).Guido van Rossum2007-09-101-4/+50
* Make it an error to compare a bytes object and a Unicode object.Jeremy Hylton2007-08-291-5/+5
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-63/+44
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-39/+43
* Fix core dump in an endcase of b.strip() that I missed.Guido van Rossum2007-08-081-0/+1
* Getting rid of cPickle. Mmm, feels good!Guido van Rossum2007-07-201-7/+5
* Patch by Christian Heimes to change self.assert_(x == y) intoGuido van Rossum2007-07-111-1/+1
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-3/+3
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-0/+6
* Fix tset_bytes.py.Guido van Rossum2007-05-241-4/+4
* I don't know how come bytes.join() was a class method, but that's clearlyGuido van Rossum2007-05-091-5/+6
* Given that ord() of a bytes object of length 1 is defined, it shouldGuido van Rossum2007-05-081-0/+5
* repr(b"\0") should return b"\x00", not the (unusual) b"\0".Guido van Rossum2007-05-081-2/+3
* Make all of test_bytes pass (except pickling, which is too badly busted).Guido van Rossum2007-05-041-38/+38
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-14/+14
* Support name and mode attributes on all file types.Guido van Rossum2007-04-131-8/+1
* Disallow u"..." + b"..." and b"..." + u"...".Guido van Rossum2007-04-131-1/+1
* Rough and dirty job -- allow concatenation of bytes and arbitraryGuido van Rossum2007-04-131-11/+43
* An example of action-at-a-distance: fix the problems I had in test_io.pyGuido van Rossum2007-04-111-2/+10
* Bytes should never equal unicode.Guido van Rossum2007-04-091-0/+21
* For Make Benefit Glorious Nation of Backwards Compatibility,Guido van Rossum2007-04-091-0/+15
* Addendum of patch #1669633: additional tests for bytes methods.Georg Brandl2007-03-061-0/+31
* SF patch #1669633, add methods for bytes from Pete Shinners.Neal Norwitz2007-02-271-22/+168
* Implement bytes.fromhex(), with tests.Georg Brandl2007-02-271-0/+15
* Make bytes_repr return a string containing a b"" literal.Georg Brandl2007-02-241-3/+5
* Bytes literal.Thomas Wouters2007-02-231-1/+13
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-2/+2
* Implement extended slicing in bytes objects.Thomas Wouters2006-12-191-0/+31
* Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop'Thomas Wouters2006-08-231-0/+3
* Make bytesobject raise ValueError instead of TypeError again (thanks, Nick)Thomas Wouters2006-08-221-4/+4
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-4/+4
* Comment out debug print.Guido van Rossum2006-05-261-1/+1
* Adding bytes.join() -- a class methods that concatenates an iterable of bytes.Guido van Rossum2006-05-051-0/+24
* Implement bytes += bytes, bytes *= int, int in bytes, bytes in bytes.Guido van Rossum2006-04-271-2/+49