| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
(too lazy to paste in the whole BSD license tho; included by ref)
|
|
|
|
|
| |
does everything needed, and discard the older stuff that is not
being used.
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
| |
-- improved error messages
-- factored out SRE_COUNT; the same code is used by
SRE_OP_REPEAT_ONE_TEMPLATE
-- minor cleanups
|
|
|
|
|
| |
This is a notice without a date, which apparently is not a claim to
copyright but only advice to the reader. IANAL. :-)
|
|
|
|
|
| |
final release), run "make test" with gc's LEAK_DEBUG enabled. This
uses the new -l flag to regrtest.
|
|
|
|
| |
module is importable.
|
| |
|
| |
|
|
|
|
|
|
| |
accepted by the BDFL.
Added documentation for zip() builtin.
|
|
|
|
|
|
|
|
|
|
|
| |
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()
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Description of fcntl(): Added description of what can go wrong.
|
| |
|
|
|
|
| |
escape, as documented in the comment for the check_escape() function
|
| |
|
| |
|
|
|
|
|
| |
the --help-formats output. Also moved that list up so it's more obvious
when adding formats.
|
|
|
|
| |
the one in cmd.py).
|
| |
|
| |
|
|
|
|
| |
consistency.
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
| |
in '_init_nt()' (they were kludges for CygwinCCompiler and no longer needed).
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
| |
'export_symbols' can be None (not sure this is a good idea: it's inconsistent
with every other instance attribute of Extension).
|
| |
|
|
|
|
|
| |
the linker leaves the (temporary) .lib file in the temporary dir. (Moved
from 'msvc_prelink_hack()' method in build_ext.py.)
|
|
|
|
|
|
|
|
|
|
|
| |
- 'export_symbol_file' (and corresponding 'def_file' in the old
"build info" dict) are gone; warn if we see 'def_file' in the
dict
- the MSVC "pre-link hack" is gone -- all that stuff is now handled
elsewhere (eg. by using 'export_symbols', etc.)
- add 'get_export_symbols()' and 'get_libraries()' methods -- needed
because on Windows, both of those things are a tad more complicated
than fetching them from the Extension instance
|
|
|
|
| |
comeback.
|
|
|
|
|
| |
-- added REPEAT_ONE operator
-- added ANY_ALL operator (used to represent "(?s).")
|
|
|
|
| |
Undo that!
|
|
|
|
|
|
|
| |
-- fixed literal check in branch operator
(this broke test_tokenize, as reported by Mark Favas)
-- added REPEAT_ONE operator (still not enabled, though)
-- added some debugging stuff (maxlevel)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
-- reverted REPEAT operator to use "repeat context" strategy
(from 0.8.X), but done right this time.
-- got rid of backtracking stack; use nested SRE_MATCH calls
instead (should probably put it back again in 0.9.9 ;-)
-- properly reset state in scanner mode
-- don't use aggressive inlining by default
|
|
|
|
| |
that sys.version_info will be built properly.
|
|
|
|
|
|
|
| |
Modify HTTP to use delegation instead of inheritance. The
_connection_class attribute of the class defines what class to
delegate to. The HTTPS class is a subclass of HTTP that redefines
_connection_class.
|
| |
|