- 03 May, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 18 Eyl, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 07 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
are used. Move also _Py_IDENTIFIER() defintions to the top in modified files to remove identifiers duplicated in the same file.
-
- 06 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
instead of creating temporary Unicode string objects Add also more identifiers in pythonrun.c to avoid temporary Unicode string objets for the interactive interpreter.
-
- 31 Eki, 2013 3 kayıt (commit)
-
-
Victor Stinner yazdı
After more tests, I now think that it is the safest option.
-
Victor Stinner yazdı
call a Python function with an exception set
-
Victor Stinner yazdı
with an exception set
-
- 29 Eki, 2013 2 kayıt (commit)
-
-
Victor Stinner yazdı
Warnings may be emitted during Python shutdown, like "unclosed file XXX". During shutdown, globals()['__main__'] may be None.
-
Victor Stinner yazdı
characters.
-
- 28 Eki, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
finalization. sys.argv is set to None during Python finalization: add PyList_Check() to avoid a crash in PyList_Size().
-
- 26 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
filenames anymore on Windows.
-
- 15 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
_Py_DisplaySourceLine() For example, _PyGC_DumpShutdownStats() calls PyErr_WarnExplicitFormat() while the import machinery does not work anymore, _Py_DisplaySourceLine() fails when trying to import the io module.
-
- 08 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
(should fix Windows buildbot failures on test_gc)
-
- 18 Ock, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 12 Ock, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 09 Ara, 2011 1 kayıt (commit)
-
-
Florent Xicluna yazdı
-
- 21 Kas, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
And PyUnicode_GetSize() => PyUnicode_GetLength()
-
- 07 Kas, 2011 1 kayıt (commit)
-
- 14 Eki, 2011 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 10 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 09 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
-
- 06 Eki, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 28 Eyl, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 18 Tem, 2011 1 kayıt (commit)
-
-
Brett Cannon yazdı
restricting itself to just functions and methods (which allows built-in functions to be used, etc.). Closes issue #10271. Thanks to lekma for the bug report.
-
- 05 Tem, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 04 Tem, 2011 3 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
shutdown, if globals()['__file__'] is None.
-
Victor Stinner yazdı
shutdown, if globals()['__file__'] is None.
-
- 05 Tem, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 04 Tem, 2011 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
shutdown, if globals()['__file__'] is None.
-
- 15 Mar, 2011 2 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
- 27 Ara, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
encoding instead of UTF-8.
-
- 24 Eki, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
except when configured --with-pydebug. Emit this warning from the GC shutdown procedure, rather than just printing to stderr.
-
- 04 Eyl, 2010 1 kayıt (commit)
-
-
Brett Cannon yazdı
'once_registry'. This is bad as the warnings module had variables named 'defaultaction' and 'onceregistry' which are what people should be looking at (technically those variables shouldn't be mucked with as they are undocumented, but we all know better than to believe that isn't happening). So the variables from _warnings have been renamed to come off as private and to avoid confusion over what variable should be used. Closes issue #9766. Thanks to Antoine Pitrou for the discovery.
-
- 13 Agu, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
Similar to PyErr_WarnEx() but use PyUnicode_FromFormatV() to format the warning message. Strip also some trailing spaces.
-
- 08 Agu, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
setup_context() replaces .pyc or .pyo filename suffix by .py, but it didn't work if the filename contains a non-ascii character because the function used the wrong unit for the length (number of characters instead of the number of bytes). With this patch, it uses unicode filenames instead of bytes filenames, to fix the bug and to be fully unicode compliant.
-
- 28 Haz, 2010 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77402 | brett.cannon | 2010-01-09 20:56:19 -0600 (Sat, 09 Jan 2010) | 12 lines DeprecationWarning is now silent by default. This was originally suggested by Guido, discussed on the stdlib-sig mailing list, and given the OK by Guido directly to me. What this change essentially means is that Python has taken a policy of silencing warnings that are only of interest to developers by default. This should prevent users from seeing warnings which are triggered by an application being run against a new interpreter before the app developer has a chance to update their code. Closes issue #7319. Thanks to Antoine Pitrou, Ezio Melotti, and Brian Curtin for helping with the issue. ........ r77505 | brett.cannon | 2010-01-14 14:00:28 -0600 (Thu, 14 Jan 2010) | 7 lines The silencing of DeprecationWarning was not taking -3 into consideration. Since Py3K warnings are DeprecationWarning by default this was causing -3 to essentially be a no-op. Now DeprecationWarning is only silenced if -3 is not used. Closes issue #7700. Thanks Ezio Melotti and Florent Xicluna for patch help. ........ r77510 | brett.cannon | 2010-01-14 19:31:45 -0600 (Thu, 14 Jan 2010) | 1 line Remove C++/C99-style comments. ........
-