Victor Stinner
|
dcdd05b0b4
|
Close #19442: warn_explicit() does nothing when called late during Python shutdown
After more tests, I now think that it is the safest option.
|
2013-11-01 00:55:30 +01:00 |
|
Victor Stinner
|
359fabc19f
|
Issue #19437: Cleanup r_ref() of the marshal module
|
2013-10-31 17:09:01 +01:00 |
|
Victor Stinner
|
d5cae6f143
|
Issue #19437: Fix r_object() of marshal module, handle PyDict_SetItem() failure
for TYPE_DICT and stop immedialty on first r_object() failure
|
2013-10-31 17:14:52 +01:00 |
|
Victor Stinner
|
b1b7b1834b
|
Issue #19437: Fix r_object() of marshal module, handle r_byte() failure for
TYPE_SMALL_TUPLE
|
2013-10-31 17:07:08 +01:00 |
|
Victor Stinner
|
763b0d19c9
|
Issue #19437: Fix r_PyLong() of marshal module, stop immediatly at first
failure, don't read any more data
|
2013-10-31 16:56:38 +01:00 |
|
Victor Stinner
|
ae233eab5c
|
Issue #19437: Fix show_warning() of _warnings, stop at the first error to not
call a Python function with an exception set
|
2013-10-31 14:51:38 +01:00 |
|
Victor Stinner
|
3cd04aa1b2
|
Issue #19437: Fix get_filter() from _warnings, don't call PyObject_IsSubclass()
with an exception set
|
2013-10-31 14:46:00 +01:00 |
|
Benjamin Peterson
|
472805df59
|
merge 3.3
|
2013-10-31 01:21:06 -04:00 |
|
Benjamin Peterson
|
7f69dcac16
|
make string literal const
|
2013-10-31 01:20:58 -04:00 |
|
Benjamin Peterson
|
96c03df771
|
merge 3.3
|
2013-10-29 22:25:55 -04:00 |
|
Benjamin Peterson
|
8f169489c4
|
update comment
|
2013-10-29 22:25:06 -04:00 |
|
Victor Stinner
|
856f45f09c
|
Issue #19442: Fix warnings emitted during Python shutdown
Warnings may be emitted during Python shutdown, like "unclosed file XXX".
During shutdown, globals()['__main__'] may be None.
|
2013-10-30 00:04:59 +01:00 |
|
Victor Stinner
|
a4c704b260
|
Issue #19424: Fix the warnings module to accept filename containing surrogate
characters.
|
2013-10-29 23:43:41 +01:00 |
|
Victor Stinner
|
41bb43a71e
|
Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
exceptions when merging fast locals into f_locals of a frame.
PyEval_GetLocals() now raises an exception and return NULL on failure.
|
2013-10-29 01:19:37 +01:00 |
|
Victor Stinner
|
ce5f4fba11
|
Issue #19421: fix a check in warnings.warn() to be able to use it during Python
finalization.
sys.argv is set to None during Python finalization: add PyList_Check() to avoid
a crash in PyList_Size().
|
2013-10-28 18:47:22 +01:00 |
|
Victor Stinner
|
8fea252a50
|
Issue #18520: fix reference leak in _PySys_Init()
|
2013-10-27 17:15:42 +01:00 |
|
Christian Heimes
|
efa48676d5
|
Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the
Python executable and not removed by the linker's optimizer.
|
2013-10-22 10:23:12 +02:00 |
|
Christian Heimes
|
49e61806f5
|
Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the
Python executable and not removed by the linker's optimizer.
|
2013-10-22 10:22:29 +02:00 |
|
Guido van Rossum
|
7be5d7d0e0
|
Issue 19306: Add extra hints to faulthandler stack dumps that they are upside down.
|
2013-10-20 18:21:02 -07:00 |
|
Benjamin Peterson
|
6b4f7803f8
|
cleanup the construction of __qualname__ (closes #19301 again)
|
2013-10-20 17:50:28 -04:00 |
|
Nick Coghlan
|
6de9200e57
|
Close #19313: remove no longer needed Py_XINCREF
Eliminates a refleak introduced in commit b4a325275fb0
|
2013-10-20 22:43:53 +10:00 |
|
Benjamin Peterson
|
34d33a595b
|
removal u_qualname, since compiler_scope_qualname is only ever called once
|
2013-10-19 16:15:58 -04:00 |
|
Benjamin Peterson
|
a8a38b8e4f
|
strengthen condition and add assertion
|
2013-10-19 16:14:39 -04:00 |
|
Benjamin Peterson
|
3d9e481ece
|
give explicitly global functions and classes a global __qualname__ (closes #19301)
|
2013-10-19 16:01:13 -04:00 |
|
Serhiy Storchaka
|
c679227e31
|
Issue #1772673: The type of char* arguments now changed to const char*.
|
2013-10-19 21:03:34 +03:00 |
|