Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. == 1.1 =========================================================================
  2. * applied patch by Dean Hall to fix several range() bugs
  3. * applied patch by Krzysztof Kowalczyk to add VS 2005, 2008 compatibility.
  4. * reorganized the source so that contributed modules can go into contrib
  5. * reorganized the reorganization so that modules go into modules
  6.     since that seems less confusing somehow
  7. * added a crude pygame module - to see it in action:
  8.     $ python setup.py linux pygame
  9.     $ ./build/tinypy examples/julia.py
  10. * added support for
  11.     from x import *
  12.     from x import y
  13. * trimmed off 1064 bytes by changing all the tokens from dicts to
  14.     a Token class in tokenize, parse, encode modules
  15. * applied patch by Seth Lemons to support /* */ comment stripping in
  16.     setup.py and get tinypy up to -std=c89 spec
  17. * cleaned up encode.py so that registers are no longer leaked
  18.     added assert after each frame to check that this is the case
  19. * applied patch by KK to improve tinypy/tests.py feedback
  20. * applied patch by allefant to finish namespacing tinypy
  21. * applied patch by allefant to keep blob->tinypy.h from having warnings
  22. * added math module from Rockins Chen
  23. * fixed precedent of **
  24. * removed unused tp_data meta methods
  25. * made tp_data API "safer" by requiring the magic type
  26. * improved setup.py to handle the clean argument
  27. * renamed some internal fnc names for no good reason
  28. * added boot option to setup.py so that full boostrapping
  29.     isn't always required
  30. * applied const correctness patch from allefant
  31. * fixed memory leak in list & dict copy functions
  32. * improved kwargs support
  33. * got it compiling with -Wc++-compat
  34. * applied ord patch from allefant
  35. * fixed mingw build