1. 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
  2. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
  3. 6495c8d Typo: encoding -> codeset. by Martin v. Löwis · 16 years ago
  4. b12d857 Move sys_stream and sys_isatty out of the have-langinfo block. by Martin v. Löwis · 16 years ago
  5. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  6. dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  7. 6585660 Issue 2784: fix leaks in exception exit. by Raymond Hettinger · 16 years ago
  8. 933d373 Fix issue2588: Do not execute str[size-1] = '\0' when a 0 size is by Gregory P. Smith · 16 years ago
  9. 23921f0 Fix issue2589: there was a potential integer overflow leading to by Gregory P. Smith · 16 years ago
  10. dacde0d turn PyErr_WarnPy3k into a macro by Benjamin Peterson · 16 years ago
  11. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  12. 3497f94 First step of the C API rename: by Christian Heimes · 16 years ago
  13. 4dd019f Patch #2488: Add sys.maxsize. by Martin v. Löwis · 16 years ago
  14. c6d64ec revert 63425 over Guido's Febuary message about this, that I missed by Benjamin Peterson · 16 years ago
  15. d7943cb fix spelling by Benjamin Peterson · 16 years ago
  16. 79a922d add Py3k warnings to oct and hex. backport hex behavior (because it's not different) by Benjamin Peterson · 16 years ago
  17. 9c5b515 Fix a refleak in the _warnings module. by Georg Brandl · 16 years ago
  18. b9030f4 #2196 hasattr now allows SystemExit and KeyboardInterrupt to propagate by Benjamin Peterson · 16 years ago
  19. cf537ff Addresses issue 2802: 'n' formatting for integers. by Eric Smith · 16 years ago
  20. b52a74b #2816: clarify error messages for EOF while scanning strings. by Georg Brandl · 16 years ago
  21. 6c02916 #1792: Improve performance of marshal.dumps() on large objects by increasing by Andrew M. Kuchling · 16 years ago
  22. be1501b Fix sys.flags to properly expose bytes_warning. by Brett Cannon · 16 years ago
  23. af748c3 Implemented PEP 370 by Christian Heimes · 16 years ago
  24. d295032 Fix logic error in Python/_warnings.c and add a test to verify by Benjamin Peterson · 16 years ago
  25. e3dcb01 Fix a bug in the handling of the stacklevel argument in warnings.warn() where by Brett Cannon · 16 years ago
  26. 8a232cc Add a DeprecationWarning for when warnings.showwarning() is set to a function by Brett Cannon · 16 years ago
  27. 2b30ea0 The compiling struct is now passed around to all AST helpers (see issue 2720) by Benjamin Peterson · 16 years ago
  28. 64a4bbe Fix the C implementation of 'warnings' to infer the filename of the module that by Brett Cannon · 16 years ago
  29. ab9cc1b Fix some indentation errors. by Brett Cannon · 16 years ago
  30. b457dda Fix a backwards-compatibility mistake where a new optional argument for by Brett Cannon · 16 years ago
  31. 28e0873 #2719: backport next() from 3k. by Georg Brandl · 16 years ago
  32. 0a95063 Issue 2526, float.__format__ 'n' specifier does not support thousands grouping. by Eric Smith · 16 years ago
  33. 141534e Fix a bug introduced by the warnings rewrite where tracebacks were being by Brett Cannon · 16 years ago
  34. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 16 years ago
  35. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  36. a692c4d Added PyErr_WarnPy3k function. (issue 2671) I will be converting current Py3k warnings to the use of this function soon. by Benjamin Peterson · 16 years ago
  37. 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 16 years ago
  38. 858a770 Fix indentation in sysmodule.c by Benjamin Peterson · 16 years ago
  39. f9e7ebe Correct a refleak found by "regrtest.py -R:: test_structmembers" by Amaury Forgeot d'Arc · 16 years ago
  40. 41a0a37 Improve -X error message. by Georg Brandl · 16 years ago
  41. 820b51c #2627 Let it be known what pgen generates by Benjamin Peterson · 16 years ago
  42. 6715352 Use PyString_InternFromString instead of PyString_FromString for static vars by Christian Heimes · 16 years ago
  43. 40f0a87 Fix a bug in PySys_HasWarnOption() where it was not properly checking the by Brett Cannon · 16 years ago
  44. e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 16 years ago
  45. 7a98d27 Applied patch #2617 from Frank Wierzbicki wit some extras from me by Christian Heimes · 16 years ago
  46. e34c21c Make AST nodes pickleable. by Georg Brandl · 16 years ago
  47. 1721e75 Fix error message -- "expects either 0 or 0 arguments" by Georg Brandl · 16 years ago
  48. 2c55c59 Make _fields attr for no fields consistent with _attributes attr. by Georg Brandl · 16 years ago
  49. c52ed59 #2505: allow easier creation of AST nodes. by Georg Brandl · 16 years ago
  50. a48f3ab Patch #2511: Give the "excepthandler" AST item proper attributes by making it a Sum. by Georg Brandl · 16 years ago
  51. f2bfd54 Properly check for consistency with the third argument of by Georg Brandl · 16 years ago
  52. 69b747b Fix a reference leak found by Georg, when compiling a class nested in another class. by Amaury Forgeot d'Arc · 16 years ago
  53. 473445c Silence a compilation warning by Amaury Forgeot d'Arc · 16 years ago
  54. fc8eef3 Patch #1810 by Thomas Lee, reviewed by myself: by Georg Brandl · 16 years ago
  55. d183bdd Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. by Neal Norwitz · 16 years ago
  56. 61e4590 Build bots are working again - removing the hack by Christian Heimes · 16 years ago
  57. 81caa79 Quick 'n dirty hack: Increase the magic by 2 to force a rebuild of pyc/pyo files on the build bots by Christian Heimes · 16 years ago
  58. 231346e Fix warnings about using char as an array subscript. This is not portable by Neal Norwitz · 16 years ago
  59. df70e05 C89 compliance: Microsoft compilers want variable declarations at the top by Amaury Forgeot d'Arc · 16 years ago
  60. 7f23d86 Initialize PyCompilerFlags cf_flags with 0 by Christian Heimes · 16 years ago
  61. 3c60833 Patch #2477: Added from __future__ import unicode_literals by Christian Heimes · 16 years ago
  62. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 16 years ago
  63. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 16 years ago
  64. 4677fbf7 Try to fix a bunch of compiler warnings on Win64. by Neal Norwitz · 16 years ago
  65. a113bd9 Added quick hack for bzr by Christian Heimes · 16 years ago
  66. 6a453c3 Added quick hack for bzr by Christian Heimes · 16 years ago
  67. ade57d0 Remove compiler warnings (on Alpha at least) about using chars as by Neal Norwitz · 16 years ago
  68. 5a44424 #2358: add py3k warning to sys.exc_clear(). by Georg Brandl · 16 years ago
  69. 10dca6e The filter() function does support a None argument in Py3.0. by Raymond Hettinger · 16 years ago
  70. a4d7789 Issue #2400: Allow relative imports to "import *". by Martin v. Löwis · 16 years ago
  71. 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 16 years ago
  72. 8e6ec2f Added a warning when -3 is enabled and None is passed to filter as the first argument. by David Wolever · 16 years ago
  73. 3781aef Finish backporting new buffer API to Python 2.6. Left to do: memoryview object and structmodule. But, these need to be finished in Python 3.0 first. No objects support the new buffer API in Python 2.6 as of yet, and except for the memoryview object, I don't think they will. by Travis E. Oliphant · 16 years ago
  74. 504153d Issue #2341: Add a Py3k warning when raising an exception that doesn't by Guido van Rossum · 16 years ago
  75. aa5778d Remove our implementation of memmove() and strerror(); both are in the C89 by Brett Cannon · 16 years ago
  76. 20bda58 Clean up the Py3k warnings for non-BaseException-subclasses a bit. We by Guido van Rossum · 16 years ago
  77. 04edb52 - Issue #2371: Add a Py3k warning when catching an exception that by Guido van Rossum · 16 years ago
  78. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 16 years ago
  79. 5c35a9d Reformated lines > 79 chars. Deleted unused macro ISXDIGIT. by Eric Smith · 16 years ago
  80. 8113ca6 Issue 2264: empty float presentation type needs to have at least one digit past the decimal point. by Eric Smith · 16 years ago
  81. 5becac5 Handle memory allocation failure. Found by Adam Olsen by Neal Norwitz · 16 years ago
  82. 400aeda Add a warning for code like: assert (0, 'message') by Neal Norwitz · 16 years ago
  83. 7af53be Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files) by Nick Coghlan · 16 years ago
  84. d21fb4c Issue#2238: some syntax errors from *args or **kwargs expressions by Amaury Forgeot d'Arc · 16 years ago
  85. 9063a99 compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that in by Jeffrey Yasskin · 16 years ago
  86. 189b6d8 More copyright year and version number bumps by Barry Warsaw · 16 years ago
  87. ea83793 Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg by Christian Heimes · 16 years ago
  88. df6ac3d Whitespace normalization by Neal Norwitz · 16 years ago
  89. 0031ff3 Fix indentation by Neal Norwitz · 16 years ago
  90. b93e7d1 Add a little info to the 3k deprecation warnings about what to use instead. by Neal Norwitz · 16 years ago
  91. 53152a1 map(None, ...) is not supported in 3.0. by Neal Norwitz · 16 years ago
  92. 5e8e6d2 MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short. by Christian Heimes · 16 years ago
  93. 4034685 Issue #2051 and patch from Alexander Belopolsky: by Christian Heimes · 16 years ago
  94. 8328bbc Removed duplicate Py_CHARMASK define. It's already defined in Python.h. by Eric Smith · 16 years ago
  95. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 16 years ago
  96. 3cd8194 Added bin() builtin. I'm going to check in the tests in a seperate checkin, because the builtin doesn't need to be ported to py3k, but the tests are missing in py3k and need to be merged there. by Eric Smith · 16 years ago
  97. 7ef40bf Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description). by Eric Smith · 16 years ago
  98. 5299935 Perform correct handling of stack overflow for windows: Catch the correct exception code and reset the overflow condition when handled. by Kristján Valur Jónsson · 16 years ago
  99. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 16 years ago
  100. f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 16 years ago