Antoine Pitrou
7f14f0d8a0
Recorded merge of revisions 81032 via svnmerge from
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.
........
................
16 years ago
Martin v. Löwis
8ed91b2768
Issue #6097 : Escape UTF-8 surrogates resulting from mbstocs conversion
of the command line.
17 years ago
Martin v. Löwis
43c57785d3
Rename utf8b error handler to surrogateescape.
17 years ago
Martin v. Löwis
011e842033
Issue #5915 : Implement PEP 383, Non-decodable Bytes in
System Character Interfaces.
17 years ago
Georg Brandl
26338d1cfd
another instance of #804543 : use strdup() when saving the result of setlocale() because it could be overwritten by subsequent setlocale()s.
17 years ago
Benjamin Peterson
08a8f5fff9
restore compilation on OpenBSD #4146
18 years ago
Amaury Forgeot d'Arc
d0ca955d9f
#4004 : Missing newline in some startup error messages.
Patch by Victor.
18 years ago
Antoine Pitrou
fff953048f
Issue #3696 : Error parsing arguments on OpenBSD <= 4.4 and Cygwin.
Patch by Amaury Forgeot d'Arc, reviewed by me.
18 years ago
Martin v. Löwis
790465fd90
Change command line processing API to use wchar_t.
Fixes #2128 .
18 years ago
Tim Peters
4643bd9a9c
Apparently FreeBSD enables some HW floating-point exceptions by default.
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.
23 years ago
Mark Hammond
fe51c6d66e
Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype
for Py_Main().
Thanks to Kalle Svensson and Skip Montanaro for the patches.
24 years ago
Thomas Wouters
bd4bc4e9e9
Even more ANSIfication: fix as many function pointers and declarations as
possible.
26 years ago
Fredrik Lundh
faa209d6bd
- ANSI-fication
(patch #100805 by Peter Schneider-Kamp)
26 years ago
Guido van Rossum
9c1201fe39
Py_Main() must be DL_EXPORT too.
28 years ago
Guido van Rossum
be10c20adf
Now include Python.h
28 years ago
Guido van Rossum
7c14103d77
Keep gcc -Wall happy
29 years ago
Guido van Rossum
4c04be64b3
This is now the "real" main program -- it calls Py_Main(argc, argv)
which is in the library and does all the work.
29 years ago