1. 95b1ba6 Add PyMemoryView_FromMemory() to whatsnew/3.3. by Stefan Krah · 13 years ago
  2. 6181b39 Remove duplicate label. by Georg Brandl · 13 years ago
  3. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 13 years ago
  4. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 13 years ago
  5. c229e6e Issue #14040: Remove rarely used file name suffixes for C extensions (under POSIX mainly). by Antoine Pitrou · 13 years ago
  6. a72a98f Issue #13988: cElementTree is deprecated and the _elementtree accelerator is automatically used whenever available. by Florent Xicluna · 13 years ago
  7. 4f86343 What's new typo by Antoine Pitrou · 13 years ago
  8. d7e5c6e Add section on bz2 module to whatsnew/3.3. by Nadeem Vawda · 13 years ago
  9. 7edbe30 Fix typo in whatsnew/3.3. by Nadeem Vawda · 13 years ago
  10. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 13 years ago
  11. ccd5715 PEP 410 by Victor Stinner · 13 years ago
  12. f4c54ff What's New in 3.3: reorder modules by Victor Stinner · 13 years ago
  13. 2e63177 What's New in 3.3: Fix time module doc by Victor Stinner · 13 years ago
  14. 7794090 Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to by Charles-François Natali · 13 years ago
  15. 7372b06 Issue #13734: Add os.fwalk(), a directory walking function yielding file by Charles-François Natali · 13 years ago
  16. ff962c5 Small grammar fixes by Mark Summerfield. by Georg Brandl · 13 years ago
  17. cd89912 Issue #13835: fixes to What's new 3.3; patch by July Tikhonov by Sandro Tosi · 13 years ago
  18. b94b266 Close #10278: Add time.wallclock() function, monotonic clock. by Victor Stinner · 13 years ago
  19. d612de1 Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode. by Charles-François Natali · 13 years ago
  20. 2dfe6b0 Fix merge glitch in What's New by Nick Coghlan · 13 years ago
  21. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  22. dc3044c Issue #12760: Add a create mode to open(). Patch by David Townshend. by Charles-François Natali · 13 years ago
  23. 606e19d Fix PyUnicode_Fill() doc: return type is Py_ssize_t, not int by Victor Stinner · 13 years ago
  24. 73fc814 Add whatsnew items by Antoine Pitrou · 13 years ago
  25. 6099a03 Issue #13624: Write a specialized UTF-8 encoder to allow more optimization by Victor Stinner · 13 years ago
  26. ab59594 What's New in Python 3.3: complete the deprecation list by Victor Stinner · 13 years ago
  27. c144a93 property -> staticmethod by Benjamin Peterson · 13 years ago
  28. bfebb7b improve abstract property support (closes #11610) by Benjamin Peterson · 13 years ago
  29. 556ba04 Fix #13449: add 'blocking' parameter to sched.scheduler.run() so that the scheduler can be used in non-blocking applications by Giampaolo Rodola' · 13 years ago
  30. 73520d5 Fix #8684: make sched.scheduler class thread-safe by Giampaolo Rodola' · 13 years ago
  31. bf6e560 Make PyUnicode_Copy() private => _PyUnicode_Copy() by Victor Stinner · 13 years ago
  32. 3459922 What's New in Python 3.3: Add entry for lzma module (issue #6715). by Nadeem Vawda · 13 years ago
  33. d1be878 What's New in Python 3.3: Add a Deprecated section by Victor Stinner · 13 years ago
  34. 7b578b3 Mention hashable memoryviews, and reformat. by Antoine Pitrou · 13 years ago
  35. 0599b5b Add subheaders to make PEP 393 description clearer by Antoine Pitrou · 13 years ago
  36. 0fdfceb Issue #12567: The curses module uses Unicode functions for Unicode arguments by Victor Stinner · 13 years ago
  37. e7ede06 Typo by Antoine Pitrou · 13 years ago
  38. 6bbd76b Update What's new for PEP 3155 by Antoine Pitrou · 13 years ago
  39. 61ea8a0 Add a "What's New" entry for #12170 by Petri Lehtinen · 13 years ago
  40. bc7ea58 fix wrong credit and issue id given in previous commit by Giampaolo Rodola' · 13 years ago
  41. be55d99 Fix 13245: by Giampaolo Rodola' · 13 years ago
  42. a996f1e What's new in Python 3.3: Rephrase PEP 393 doc by Victor Stinner · 13 years ago
  43. 46606ce Document new and deprecated Unicode functions by Victor Stinner · 13 years ago
  44. 5a8bc6f Add a couple other whatsnew items by Antoine Pitrou · 13 years ago
  45. 2c0a967 Add various items in whatsnew by Antoine Pitrou · 13 years ago
  46. 45b3ad4 Remove XXX, as the functions and macros are mentioned in the porting section by Antoine Pitrou · 13 years ago
  47. beb7836 Explain concrete (resource consumption) effects of PEP 393 a bit. by Antoine Pitrou · 13 years ago
  48. d136aec Be a bit less shy by Antoine Pitrou · 13 years ago
  49. 19bd069 What's New in 3.3: Add a "Deprecated ..." section by Victor Stinner · 13 years ago
  50. 1ab6c2d Issue #13374: The Windows bytes API has been deprecated in the os module. Use by Victor Stinner · 13 years ago
  51. bfc9729 Fix a few typos by Éric Araujo · 13 years ago
  52. 9f4b1e9 Fix and deprecated the unicode_internal codec by Victor Stinner · 13 years ago
  53. 10b8cf4 Issue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support. by Charles-François Natali · 13 years ago
  54. 7592d05 Fix the issue number of my cp65001 commit: 13247 => issue #13216 by Victor Stinner · 13 years ago
  55. 2f3ca9f Close #13247: Add cp65001 codec, the Windows UTF-8 (CP_UTF8) by Victor Stinner · 13 years ago
  56. e0be423 Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to by Victor Stinner · 13 years ago
  57. 037ffbf Improve the porting section by Antoine Pitrou · 13 years ago
  58. fd9b416 Improve / clean up the PEP 393 description by Antoine Pitrou · 13 years ago
  59. 01fd26c Improve description of PEP 3151 by Antoine Pitrou · 13 years ago
  60. 2d99dac Use ``...`` for string literals. by Ezio Melotti · 13 years ago
  61. dcbb822 Fix documentation formatting. by Florent Xicluna · 13 years ago
  62. 6d57d21 Documentation typo. by Florent Xicluna · 13 years ago
  63. 3664568 Issue #13201: equality for range objects is now based on equality of the underlying sequences. Thanks Sven Marnach for the patch. by Mark Dickinson · 13 years ago
  64. 931b8aa #12753: Add support for Unicode name aliases and named sequences. by Ezio Melotti · 13 years ago
  65. a41c942 Doc improvements suggested by Éric Araujo for the new 'HEAD' Request feature. by Senthil Kumaran · 13 years ago
  66. 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 13 years ago
  67. de49d64 Fix closes issue 1673007 urllib.request to support HEAD requests with a new method arg. by Senthil Kumaran · 13 years ago
  68. e506437 What's new in Python 3.3: document new functions of the os module by Victor Stinner · 13 years ago
  69. a1bf298 What's New in Python 3.3: mention the PEP 3151 by Victor Stinner · 13 years ago
  70. 47413c1 Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias by Charles-François Natali · 13 years ago
  71. 5043f09 More info about PEP 393 in whatsnew and NEWS by Éric Araujo · 13 years ago
  72. b07b97f Minor updates to the whatsnew maintenance rules by Éric Araujo · 13 years ago
  73. 397546a Update and reorganize the whatsnew entry for PEP 393. by Ezio Melotti · 13 years ago
  74. 7d637ab Complete What's New in 3.3 about PEP 393 by Victor Stinner · 13 years ago
  75. 48a2f8f #13054: sys.maxunicode is now always 0x10FFFF. by Ezio Melotti · 13 years ago
  76. c5dbb3d Issue #1172711: Update What's New in Python 3.3 document for the array module. by Meador Inge · 13 years ago
  77. c78fb33 What's New in Python 3.3: add curses.unget_wch() by Victor Stinner · 13 years ago
  78. 811db3b Issue #1172711: Update What's New in Python 3.3 document for the struct module by Victor Stinner · 13 years ago
  79. 84b8ed8 3.3 whatsnew: fix markup, add stub for new crypt features by Éric Araujo · 13 years ago
  80. aec2f21 #12191: added entry in What's New (+ small editing on shutil section) by Sandro Tosi · 13 years ago
  81. 96fe56a Add support for the send/recvmsg API to the socket module. Patch by David Watson and Heiko Wundram. (Closes #6560) by Nick Coghlan · 13 years ago
  82. ff3d939 Close #12326: sys.platform is now always 'linux' on Linux by Victor Stinner · 13 years ago
  83. cdb3109 Fix reST role and missing word by Éric Araujo · 13 years ago
  84. 04f648c #12547: Fix example in nntplib doc. Patch by July Tikhonov. by Ezio Melotti · 13 years ago
  85. a7878b7 Close #6755: Add get_wch() method to curses.window class by Victor Stinner · 13 years ago
  86. 3c14b4e #12547: Fix import and output in nntplib example. Initial patch by July Tikhonov. by Ezio Melotti · 13 years ago
  87. 6c0929b Fix markup and remove character unsupported by latex in 3.3 whatsnew doc. by Georg Brandl · 13 years ago
  88. 2cded9c Issue #12016: Multibyte CJK decoders now resynchronize faster by Victor Stinner · 13 years ago
  89. 2ee6188 Clean up NEWS entry and tests for shutil.disk_usage (#12442) by Éric Araujo · 13 years ago
  90. 210e7ca Issue #12442: add shutil.disk_usage() by Giampaolo Rodola' · 13 years ago
  91. 096dcb1 Issue 12139: add CCC command support to FTP_TLS class to revert the SSL connection back to clear-text. by Giampaolo Rodola' · 13 years ago
  92. bc80822 Issue #12303: Add sigwaitinfo() and sigtimedwait() to the signal module. by Ross Lagerwall · 13 years ago
  93. 765e94f Add NEWS and whatsnew entries for the packaging module by Éric Araujo · 13 years ago
  94. a003af1 Issue #12196: Add a note on os.pipe2() in the "Whats' new in Python 3.3" by Charles-François Natali · 13 years ago
  95. 6daa33c Issue #10818: Remove deprecated pydoc.serve() function by Victor Stinner · 13 years ago
  96. 383c3fc Issue #10818: Remove the Tk GUI of the pydoc module (pydoc -g has been by Victor Stinner · 13 years ago
  97. 99c8b16 Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the ssl by Victor Stinner · 13 years ago
  98. 388196e Issue #12011: signal.signal() and signal.siginterrupt() raise an OSError, by Victor Stinner · 13 years ago
  99. fa0e3d5 Issue #11888: Add log2 function to math module. Patch written by Mark Dickinson. by Victor Stinner · 13 years ago
  100. d49b1f1 Issue #8407: The signal handler writes the signal number as a single byte by Victor Stinner · 13 years ago