| commit | cd6ae68943e5bd219d0f32be346d1a730635aaa4 | [log] [tgz] |
|---|---|---|
| author | Guido van Rossum <guido@python.org> | Wed May 09 19:52:16 2007 +0000 |
| committer | Guido van Rossum <guido@python.org> | Wed May 09 19:52:16 2007 +0000 |
| tree | 404da2460ce3677ed0facc7aef878ce1859e5f49 | |
| parent | 0925e419dfc5de666965dcd15ae08d045c7df36f [diff] |
I don't know how come bytes.join() was a class method, but that's clearly a mistake. It's not a regular (instance) method. b".".join([b"a", b"b"]) now returns b"a.b" -- it used to return b"ab"!