* renamed malloc.h mymalloc.h, and added MALLARG as the type of the
  argument to malloc() (size_t or unsigned int)

* listobject.c: check for overflow of the size of the object,
  so things like range(0x7fffffff) will raise MemoryError instead
  of calling malloc() with -4 (and then crashing -- malloc's fault)
4 files changed
tree: 2afa725a3a344c2350902947c30f59d1a22e00ff
  1. Demo/
  2. Doc/
  3. Grammar/
  4. Include/
  5. Lib/
  6. Mac/
  7. Modules/
  8. Objects/
  9. Parser/
  10. Python/
  11. Tools/