- 03 Aug, 2000 26 commits
-
-
Fred Drake authored
(still at the start of the manual), and "Python Language Services" (late in the manual). Moved "Restricted Execution" to just before "Python Language Services."
-
Jeremy Hylton authored
Modify parse_qsl to interpret 'a=b=c' as key 'a' and value 'b=c' (which matches Perl's CGI.pm)
-
Marc-André Lemburg authored
-
Jeremy Hylton authored
-
Marc-André Lemburg authored
the Python Unicode implementation. The internal buffer used for implementing the buffer protocol is renamed to defenc to make this change visible. It now holds the default encoded version of the Unicode object and is calculated on demand (NULL otherwise). Since the default encoding defaults to ASCII, this will mean that Unicode objects which hold non-ASCII characters will no longer work on C APIs using the "s" or "t" parser markers. C APIs must now explicitly provide Unicode support via the "u", "U" or "es"/"es#" parser markers in order to work with non-ASCII Unicode strings. (Note: this patch will also have to be applied to the 1.6 branch of the CVS tree.)
-
Fred Drake authored
Revise the tp_repr handler to produce a more "minimal" presentation. Make the tolist() method use PyArg_ParseTuple() and provide a docstring.
-
Greg Stein authored
(too lazy to paste in the whole BSD license tho; included by ref)
-
Fred Drake authored
does everything needed, and discard the older stuff that is not being used.
-
Fred Drake authored
zip() description: Fix broken markup, three small markup consistency nits, and one really minor usage nit. Introduce use of \moreargs instead of hardcoding "..." with \optional.
-
Moshe Zadka authored
-
Fred Drake authored
do_cmd_unspecified(): New functions to reflect previously unused markup. do_cmd_file(): Simplified generated markup to only make use of the existing stylesheet. do_cmd_makevar(): Make the markup more stylesheet-friendly.
-
Guido van Rossum authored
This doesn't change the copyright status for these files -- just the markings! Doing it on the main branch for these three files for which the HEAD revision was pushed back into 1.6.
-
Fredrik Lundh authored
-- improved error messages -- factored out SRE_COUNT; the same code is used by SRE_OP_REPEAT_ONE_TEMPLATE -- minor cleanups
-
Guido van Rossum authored
This is a notice without a date, which apparently is not a claim to copyright but only advice to the reader. IANAL. :-)
-
Barry Warsaw authored
final release), run "make test" with gc's LEAK_DEBUG enabled. This uses the new -l flag to regrtest.
-
Barry Warsaw authored
module is importable.
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
accepted by the BDFL. Added documentation for zip() builtin.
-
Barry Warsaw authored
accepted by the BDFL. builtin_zip(): New function to implement the zip() function described in the above proposal. zip_doc[]: Docstring for zip(). builtin_methods[]: added entry for zip()
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
- 02 Aug, 2000 14 commits
-
-
Fred Drake authored
Description of fcntl(): Added description of what can go wrong.
-
Guido van Rossum authored
-
Andrew M. Kuchling authored
escape, as documented in the comment for the check_escape() function
-
Guido van Rossum authored
-
Greg Ward authored
-
Greg Ward authored
the --help-formats output. Also moved that list up so it's more obvious when adding formats.
-
Greg Ward authored
the one in cmd.py).
-
Greg Ward authored
-
Greg Ward authored
-
Greg Ward authored
consistency.
-
Greg Ward authored
- added big comment describing possible problems - look for and react to versions of gcc, ld, and dlltool; mainly this is done by the 'get_versions()' function and the CygwinCCompiler and Mingw32CCompiler constructors - move 'check_config_h()' to end of file and defer calling it until we need to (ie. in the CygwinCCompiler constructor) - lots of changes in 'link_shared_object()' -- mostly seems to be library and DLL stuff, but I don't follow it entirely
-
Greg Ward authored
in '_init_nt()' (they were kludges for CygwinCCompiler and no longer needed).
-
Greg Ward authored
-
Greg Ward authored
it so BCPPCompiler actually works, so I'm provisionally accepting it -- ugly and working is better than not working! Major changes: - normalize paths (apparently BC++ doesn't like slashes) - overhauled how we search for and specify libraries on the linker command-line - hacked up 'find_library_file()' so it knows about "debug" library naming convention as well as "bcpp_xxx.lib" -- the question is, is this a well-established and sensible convention? Also: - change to use 'util.write_file()' to write the .def file
-