1. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  2. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  3. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  4. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  5. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  6. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  7. 023654f get_warnings_attr(): Fix coverity warning by Victor Stinner · 8 years ago
  8. e98445a _warnings.warn_explicit(): try to import warnings by Victor Stinner · 8 years ago
  9. e19558a Add a source parameter to warnings.warn() by Victor Stinner · 8 years ago
  10. 914cde8 On ResourceWarning, log traceback where the object was allocated by Victor Stinner · 8 years ago
  11. 1231a46 Add _showwarnmsg() and _formatwarnmsg() to warnings by Victor Stinner · 8 years ago
  12. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 8 years ago
  13. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  14. 714e493 Issue #24305: Prevent import subsystem stack frames from being counted by Larry Hastings · 9 years ago
  15. 63a6a6f merge 3.4 (#24096) by Benjamin Peterson · 9 years ago
  16. 8c59816 merge 3.3 (#24096) by Benjamin Peterson · 9 years ago
  17. deff2b7 be more robust against the filters list changing under us (closes #24096) by Benjamin Peterson · 9 years ago
  18. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  19. 87538e7 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
  20. cb0a006 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
  21. d8089e0 Issue #16382: Improve exception message of warnings.warn() for bad category. by Berker Peksag · 10 years ago
  22. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  23. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  24. dcdd05b Close #19442: warn_explicit() does nothing when called late during Python shutdown by Victor Stinner · 11 years ago
  25. ae233ea Issue #19437: Fix show_warning() of _warnings, stop at the first error to not by Victor Stinner · 11 years ago
  26. 3cd04aa Issue #19437: Fix get_filter() from _warnings, don't call PyObject_IsSubclass() by Victor Stinner · 11 years ago
  27. 856f45f Issue #19442: Fix warnings emitted during Python shutdown by Victor Stinner · 11 years ago
  28. a4c704b Issue #19424: Fix the warnings module to accept filename containing surrogate by Victor Stinner · 11 years ago
  29. ce5f4fb Issue #19421: fix a check in warnings.warn() to be able to use it during Python by Victor Stinner · 11 years ago
  30. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  31. 78e2c98 Issue #18408: Fix show_warning(), clear also the exception raised by by Victor Stinner · 11 years ago
  32. 070cb3c Issue #1545463: At shutdown, defer finalization of codec modules so that stderr remains usable. by Antoine Pitrou · 11 years ago
  33. aa5c5c6 Finally fix all test_capi refleaks by Antoine Pitrou · 12 years ago
  34. 21e0da2 remove some usage of Py_UNICODE_TOUPPER/LOWER by Benjamin Peterson · 12 years ago
  35. 720682e Merge 3.2 by Florent Xicluna · 12 years ago
  36. 5126df6 Remove obsolete py3k comment. by Florent Xicluna · 12 years ago
  37. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  38. d10759f Make _PyUnicode_FromId return borrowed references. by Martin v. Löwis · 13 years ago
  39. 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
  40. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  41. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  42. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  43. b62a7b2 Fix _warnings.c: make the filename string ready by Victor Stinner · 13 years ago
  44. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  45. 52a7d98 Make warnings accept a callable for showwarnings instead of by Brett Cannon · 13 years ago
  46. bb4a747 start out this branch always with filename NULL by Benjamin Peterson · 13 years ago
  47. a55007a plug refleak by Benjamin Peterson · 13 years ago
  48. 8b0508e Issue #12467: warnings: fix a race condition if a warning is emitted at by Victor Stinner · 13 years ago
  49. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  50. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  51. cb428f0 Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem by Victor Stinner · 13 years ago
  52. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  53. ef0e6c3 _warnings exposed two variables with the name 'default_action' and by Brett Cannon · 14 years ago
  54. 4a2b7a1 Issue #9425: Create PyErr_WarnFormat() function by Victor Stinner · 14 years ago
  55. 2e5f117 Issue #9425: fix setup_context() for non-ascii filenames by Victor Stinner · 14 years ago
  56. 7ab4b8d Merged revisions 77402,77505,77510 via svnmerge from by Benjamin Peterson · 14 years ago
  57. 25bb0fd Merged revisions 82059,82061 via svnmerge from by Victor Stinner · 14 years ago
  58. 0fe25a4 Issue #6543: Write the traceback in the terminal encoding instead of utf-8. by Victor Stinner · 14 years ago
  59. 148051a Recorded merge of revisions 81364 via svnmerge from by Victor Stinner · 14 years ago
  60. 7d79b8b Issue #8766: Initialize _warnings module before importing the first module. by Victor Stinner · 14 years ago
  61. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  62. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  63. 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
  64. 680ac29 Merged revisions 74046 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  65. 1c0c003 Merged revisions 74040,74042 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  66. 0759dd6 Merged revisions 70965 via svnmerge from by Brett Cannon · 15 years ago
  67. 1a8501c Merged revisions 66748 via svnmerge from by Christian Heimes · 16 years ago
  68. 54bd41d The _warnings module did not properly handle cases where strings were not being by Brett Cannon · 16 years ago
  69. ec92e18 Merge in r66135. Doing also required removing a stale DeprecationWarning along by Brett Cannon · 16 years ago
  70. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  71. 2ee470f Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from by Georg Brandl · 16 years ago
  72. e652821 implement chained exception tracebacks by Benjamin Peterson · 16 years ago
  73. db73491 Merged revisions 64549 via svnmerge from by Brett Cannon · 16 years ago
  74. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  75. e9f305f Merged revisions 63208-63209,63211-63212,63214-63217,63219-63224,63226-63227,63229-63232,63234-63235,63237-63239,63241,63243-63246,63250-63254,63256-63259,63261,63263-63264,63266-63267,63269-63270,63272-63273,63275-63276,63278,63280-63281,63283-63284,63286-63287,63289-63290,63292-63293,63295-63296,63298-63299,63301-63302,63304-63305,63307,63309-63314,63316-63322,63324-63325,63327-63335,63337-63338,63340-63342,63344-63346,63348 via svnmerge from by Alexandre Vassalotti · 16 years ago
  76. 8dc226f Merged revisions 62774-62775,62785,62787-62788 via svnmerge from by Christian Heimes · 16 years ago
  77. 5d8da20 Merged revisions 62713,62715,62728,62737,62740,62744,62749,62756 via svnmerge from by Christian Heimes · 16 years ago
  78. 9f4bf1d Fix merge error by Benjamin Peterson · 16 years ago
  79. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  80. 32dde22 Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62055-62058,62060-62066,62068-62074,62076-62079,62081-62083,62086-62089,62092-62094,62098,62101,62104,62106-62109,62115-62122,62124-62125,62128,62130,62132,62134-62135,62137,62139-62140,62144,62146,62151,62155,62157,62162-62166,62171-62172,62175-62176,62178,62181-62186,62188-62192,62196,62200-62203,62206,62211-62213,62215-62218,62222,62224-62226,62228,62232,62236,62240-62245,62248,62250-62254,62256-62258,62262,62264-62265,62267-62270,62272-62276,62280-62288,62291-62292,62299-62301,62307,62312,62316-62318,62322-62331,62333-62337,62339-62344,62346-62348 via svnmerge from by Neal Norwitz · 16 years ago
  81. 33fe809 Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,62302-62306,62308,62311,62313-62315,62319-62321 via svnmerge from by Christian Heimes · 16 years ago