| Age | Commit message (Expand) | Author |
| 2014-07-28 | py: Implement __file__ attribute for modules. | Paul Sokolovsky |
| 2014-07-22 | tests: Add testcase for read by length past EOF. | Paul Sokolovsky |
| 2014-07-19 | py: Add stream reading of n unicode chars; unicode support by default. | Damien George |
| 2014-07-13 | test: Add run-tests-exp.sh, script to run testsuite with only sh dependency. | Paul Sokolovsky |
| 2014-07-12 | run-tests: Add option to write CPython's test results to .exp files. | Paul Sokolovsky |
| 2014-07-11 | moductypes: Add symbolic constants to specify bitfield position/length. | Paul Sokolovsky |
| 2014-07-09 | moductypes: Foreign data interface module, roughly based on ctype ideas. | Paul Sokolovsky |
| 2014-07-05 | tests: Rename test scripts, changing - to _ for consistency. | Damien George |
| 2014-07-05 | py: Automatically ake __new__ a staticmethod. | Damien George |
| 2014-06-28 | tests: Write output in byte mode, not text mode. | Damien George |
| 2014-06-28 | Merge branch 'master' into unicode | Damien George |
| 2014-06-28 | py: Add protection against printing too nested or recursive data structures. | Paul Sokolovsky |
| 2014-06-27 | tests: Add basic test for unicode file i/o. | Paul Sokolovsky |
| 2014-06-27 | tests: Test for explicit start/end args to str methods for unicode. | Paul Sokolovsky |
| 2014-06-27 | tests: Add tests for unicode find()/rfind()/index(). | Paul Sokolovsky |
| 2014-06-27 | tests: Add test for unicode string iteration. | Paul Sokolovsky |
| 2014-06-27 | tests: Add unicode test. | Chris Angelico |
| 2014-06-27 | tests: Add test for catching infinite function recursion. | Paul Sokolovsky |
| 2014-06-25 | modstruct: Fix alignment handling issues. | Paul Sokolovsky |
| 2014-06-20 | tests/float/: Skip tests if "math" module is not available. | Paul Sokolovsky |
| 2014-06-19 | bench: Three ways to process a byte buffer. | Paul Sokolovsky |
| 2014-06-19 | bench: Add test for map() vs inplace operations in array-likes. | Paul Sokolovsky |
| 2014-06-19 | bench: Add tests for constructing various containers from iterator. | Paul Sokolovsky |
| 2014-06-19 | bench: Add test for function call overhead. | Paul Sokolovsky |
| 2014-06-14 | objstr: Be 8-bit clean even for repr(). | Paul Sokolovsky |
| 2014-06-12 | py: Rename builtin "io" to "_io". | Paul Sokolovsky |
| 2014-06-11 | tests: Add testcases for "complicated" args to generator functions. | Paul Sokolovsky |
| 2014-06-10 | py: Implement __contains__ special method. | Damien George |
| 2014-06-08 | objtype: Fix passing of class param to inherited classmethods. | Paul Sokolovsky |
| 2014-06-08 | tests: Run 'micropython' tests on pyboard. | Damien George |
| 2014-06-08 | tests: Add more tests for default keyword-only args. | Damien George |
| 2014-06-08 | tests: Fix default arg test. | Damien George |
| 2014-06-08 | py: Make sure getattr() works with non-interned strings (by interning them). | Paul Sokolovsky |
| 2014-06-07 | py: Implement default keyword only args. | Damien George |
| 2014-06-06 | Merge pull request #667 from Rosuav/testfixes | Paul Sokolovsky |
| 2014-06-05 | Fix str.modulo when precision is specified. | Dave Hylands |
| 2014-06-06 | Turn the Travis CI test skipping mechanism into something more generic | Chris Angelico |
| 2014-06-06 | Figure out the test_name before using it (significant only to Travis skips) | Chris Angelico |
| 2014-06-05 | py: Raise TypeError when trying to format non-int with %x,%o,%X. | Damien George |
| 2014-06-06 | Change comments (mainly URLs) to no longer specifically say Python 3.3 | Chris Angelico |
| 2014-06-05 | Merge pull request #663 from Rosuav/floatpercentx | Damien George |
| 2014-06-05 | objstr: Implement "%(key)s" % {} formatting for strings and dicts. | Paul Sokolovsky |
| 2014-06-05 | Remove tests that fail under CPython 3.5 | Chris Angelico |
| 2014-06-03 | py: Implement full behaviour of dict.update(), and dict(). | Damien George |
| 2014-05-31 | tests: Add feature test for when heap allocation is disabled. | Damien George |
| 2014-05-31 | tests: Change --test_dirs to --test-dirs. | Damien George |
| 2014-05-31 | Merge pull request #632 from stinos/tests-dir-argument | Damien George |
| 2014-05-31 | py: Fix stack underflow with optimised for loop. | Damien George |
| 2014-05-31 | tests: Add another test for break-from-for-loop. | Damien George |
| 2014-05-31 | add methods isspace(), isalpha(), isdigit(), isupper() and islower() to str | Kim Bauters |