2011-10-31 |
Matt Craighead | str.join takes an arbitrary iterable
|
commit | commitdiff | tree |
2011-10-30 |
Matt Craighead | cleaner way of writing iterator loops
|
commit | commitdiff | tree |
2011-10-30 |
Matt Craighead | sorted() now works on iterables, not just lists
|
commit | commitdiff | tree |
2011-10-30 |
Matt Craighead | reversed() now works on tuples and doesn't use STL
|
commit | commitdiff | tree |
2011-10-30 |
Matt Craighead | removed list/tuple constructors that use STL
|
commit | commitdiff | tree |
2011-10-30 |
Matt Craighead | create list literals more efficiently
|
commit | commitdiff | tree |
2011-10-30 |
Matt Craighead | use listmacro to create prototypes
|
commit | commitdiff | tree |
2011-10-30 |
Matt Craighead | repair starargs support -- this is supposed to accept...
|
commit | commitdiff | tree |
2011-10-30 |
Matt Craighead | function calls take tuples, not lists, as arguments
|
commit | commitdiff | tree |
2011-10-29 |
Matt Craighead | more efficient construction of tuple literals
|
commit | commitdiff | tree |
2011-10-29 |
Matt Craighead | more efficient construction of tuples
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | more consistent implementation of methods for builtin...
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | create singletons for methods of builtin classes
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | zip() now uses tuples rather than lists
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | enumerate() now uses tuples rather than lists
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | translate tuples to tuples rather than lists
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | added tuple()
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | added repr() builtin, and improved escaping for repr...
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | allow iteration over strings
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | enumerate, reversed, and zip are actually classes
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | more tests
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | added more test cases
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | listmacro for classes
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | add silly builtins test
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | enumerate() now works on anything iterable
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | make the builtin functions singletons, so they can...
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | support int() and str() with no args
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | bool() with no args returns False
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | range returns a range object now rather than a list
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | allow set() to take an argument
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | change range from function to class, and allow list...
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | add bool builtin
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | change dict, list, and set to be classes rather than...
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | allow passing str to int()
|
commit | commitdiff | tree |
2011-10-28 |
Matt Craighead | allow int() and str() to work in some simple cases
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | support repr() on class objects
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | created true iterator objects, and use them to iterate...
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | improve string escaping
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | implement AugAssign with Subscript
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | implement set and dictionary comprehensions
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | print transform, compile, and run times separately
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | Merge branch 'master' of git://repo.or.cz/pythonc
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | support conditionals in list comprehensions
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | fix %d formatting with numbers that don't fit in 32...
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | support str.split()
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | support enumerate()
|
commit | commitdiff | tree |
2011-10-27 |
Matt Craighead | split repr() vs. str() so lists print correctly
|
commit | commitdiff | tree |
2011-10-26 |
Matt Craighead | not on int should return a boolean, not an int
|
commit | commitdiff | tree |
2011-10-26 |
Matt Craighead | dict(), list() builtins; also, empty sets print as...
|
commit | commitdiff | tree |
2011-10-26 |
Matt Craighead | prevent set() with arguments from silently doing the...
|
commit | commitdiff | tree |
2011-10-26 |
Matt Craighead | minor error reporting improvement
|
commit | commitdiff | tree |
2011-10-26 |
Matt Craighead | fix warning
|
commit | commitdiff | tree |
2011-08-13 |
Matt Craighead | both fix a warning, and make fread work more usefully...
|
commit | commitdiff | tree |
2011-08-13 |
Matt Craighead | support python -O option; compiles the C code with -O3
|
commit | commitdiff | tree |
2011-08-13 |
Matt Craighead | another warning fix
|
commit | commitdiff | tree |
2011-08-13 |
Matt Craighead | some bool ops return ints, others should return bools
|
commit | commitdiff | tree |
2011-08-13 |
Matt Craighead | print with multiple args should put spaces between...
|
commit | commitdiff | tree |
2011-08-13 |
Matt Craighead | int comparisons should return bool, not int; also,...
|
commit | commitdiff | tree |
2011-08-13 |
Matt Craighead | fix negative int literals
|
commit | commitdiff | tree |