- 27 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
* handle _PyMem_RawStrdup() failure * Py_FrozenMain() releases memory on error * Py_FrozenMain() duplicates the old locale, as done in main()
-
- 26 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 18 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
Modules/python.c:40: warning: ISO C90 forbids mixed declarations and code
-
- 10 Tem, 2013 1 kayıt (commit)
-
-
R David Murray yazdı
Patch by Andrew Rowe.
-
- 07 Tem, 2013 2 kayıt (commit)
-
-
Victor Stinner yazdı
Replace strdup() with _PyMem_RawStrdup() or _PyMem_Strdup(), depending if the GIL is held or not.
-
Victor Stinner yazdı
* Replace malloc() with PyMem_RawMalloc() * Replace PyMem_Malloc() with PyMem_RawMalloc() where the GIL is not held. * _Py_char2wchar() now returns a buffer allocated by PyMem_RawMalloc(), instead of PyMem_Malloc()
-
- 03 Ara, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
encoded/decoded to/from UTF-8/surrogateescape, instead of the locale encoding (which may be ASCII if no locale environment variable is set), to avoid inconsistencies with os.fsencode() and os.fsdecode() functions which are already using UTF-8/surrogateescape.
-
- 12 Kas, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
UTF-8/surrogateescape, instead of the locale encoding (which may be ASCII if no locale environment variable is set), to avoid inconsistencies with os.fsencode() and os.fsdecode() functions which are already using UTF-8/surrogateescape.
-
- 25 Haz, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
free the copy of the command-line. Found using Clang's static analyzer.
-
- 26 Mar, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
in sys_update_path().
-
- 16 Ara, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
cannot be decoded
-
- 20 Eki, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
the locale encoding. If the LANG (and LC_ALL and LC_CTYPE) environment variable is not set, the locale encoding is ISO-8859-1, whereas most programs (including Python) expect UTF-8. Python already uses UTF-8 for the filesystem encoding and to encode command line arguments on this OS.
-
- 16 Eki, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
_Py_char2wchar() callers usually need the result size in characters. Since it's trivial to compute it in _Py_char2wchar() (O(1) whereas wcslen() is O(n)), add an option to get it.
-
- 13 Eki, 2010 3 kayıt (commit)
-
-
Victor Stinner yazdı
Python exits with a fatal error if the command line contains an undecodable argument. PyUnicode_FromString() fails at the first undecodable byte because it calls the error handler, but error handlers are not ready before Python initialization.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
the locale encoding.
-
- 09 May, 2010 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines Recorded merge of revisions 81029 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........ ................
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
-
- 18 Nis, 2010 1 kayıt (commit)
-
-
Ronald Oussoren yazdı
This fixes issue #8441: python.c is not included in the framework while main.c is and without this patch you get a link error when building Python.framework on OSX.
-
- 17 Nis, 2010 1 kayıt (commit)
-
-
Collin Winter yazdı
-
- 14 Nis, 2010 1 kayıt (commit)
-
-
Philip Jenvey yazdı
-
- 29 May, 2009 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
of the command line.
-
- 10 May, 2009 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 05 May, 2009 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
System Character Interfaces.
-
- 27 Şub, 2009 1 kayıt (commit)
-
-
Georg Brandl yazdı
another instance of #804543: use strdup() when saving the result of setlocale() because it could be overwritten by subsequent setlocale()s.
-
- 19 Eki, 2008 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 07 Eki, 2008 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
Patch by Victor.
-
- 03 Eyl, 2008 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by Amaury Forgeot d'Arc, reviewed by me.
-
- 05 Nis, 2008 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Fixes #2128.
-
- 28 Ara, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
This can cause core dumps when Python runs. Python relies on the 754- (and C99-) mandated default "non-stop" mode for FP exceptions. This patch from Ben Laurie disables at least one FP exception on FreeBSD at Python startup time.
-
- 02 Agu, 2002 1 kayıt (commit)
-
-
Mark Hammond yazdı
for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches.
-
- 22 Tem, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
possible.
-
- 09 Tem, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
(patch #100805 by Peter Schneider-Kamp)
-
- 07 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 08 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 15 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 19 Tem, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
which is in the library and does all the work.
-