Andrew M. Kuchling
767bf49b6b
Added #define for oldest version of argument calling
2000-08-03 02:28:54 +00:00
Andrew M. Kuchling
a3eacc472c
Add nasty test case that overflows the stack with a repeated group
2000-08-03 02:06:45 +00:00
Andrew M. Kuchling
e365fb8d1f
Use METH_VARARGS instead of numeric constant 1 in method def. tables
2000-08-03 02:06:16 +00:00
Andrew M. Kuchling
14f515844d
Use METH_VARARGS instead of numeric constant 1
2000-08-03 02:04:05 +00:00
Fred Drake
6c7a46a2f0
Rob Hooft <rob@hooft.net>:
...
Description of fcntl(): Added description of what can go wrong.
2000-08-02 20:53:51 +00:00
Guido van Rossum
a2214c37fd
Rob Hooft (Patch #101046 ): use PyArg_ParseTuple everywhere.
2000-08-02 20:46:51 +00:00
Andrew M. Kuchling
3b96d0b199
Fix for bug #110651 (Jitterbug PR#343): only use the low 8 bits of an octal
...
escape, as documented in the comment for the check_escape() function
2000-08-02 13:41:18 +00:00
Guido van Rossum
a6a0ab4bab
Adding a LICENSE file so we can have it in the 1.6 release.
2000-08-02 02:35:08 +00:00
Greg Ward
dc9fe8a7ba
Typo fix.
2000-08-02 01:49:40 +00:00
Greg Ward
6f628bb877
Added 'wininst' to the 'format_commands' list, so it's included in
...
the --help-formats output. Also moved that list up so it's more obvious
when adding formats.
2000-08-02 01:44:44 +00:00
Greg Ward
9dddbb4009
Added 'execute()' method, a thin wrapper around 'util.execute() (just like
...
the one in cmd.py).
2000-08-02 01:38:20 +00:00
Greg Ward
d7faa81616
Replaced 'execute()' method with a thin wrapper around 'util.execute()'.
2000-08-02 01:37:53 +00:00
Greg Ward
1c16ac360a
Added the 'execute()' function (moved here from cmd.py with minor tweakage).
2000-08-02 01:37:30 +00:00
Greg Ward
90c74cc4da
Rene Liebscher: fix 'skipping byte-compilation' message for grammatical
...
consistency.
2000-08-02 01:34:18 +00:00
Greg Ward
bf5c70973f
Latest version from Rene Liebscher; major changes:
...
- 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
2000-08-02 01:31:56 +00:00
Greg Ward
1d526dd3b3
Rene Liebscher: deleted unneeded hard-coded assignments of CC, RANLIB, etc.
...
in '_init_nt()' (they were kludges for CygwinCCompiler and no longer needed).
2000-08-02 01:09:11 +00:00
Greg Ward
88608caff2
Rene Liebscher: factor 'find_executable()' out of '_spawn_nt()'.
2000-08-02 01:08:02 +00:00
Greg Ward
c58c517741
Patch from Rene Liebscher. Some ugly changes, but supposedly this makes
...
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
2000-08-02 01:03:23 +00:00
Greg Ward
bb56190422
Ditched 'abspath()' -- don't need 1.5.1 compatability hacks anymore.
2000-08-02 00:37:32 +00:00
Greg Ward
c6a18a5d65
Removed 'export_symbol_file'.
...
'export_symbols' can be None (not sure this is a good idea: it's inconsistent
with every other instance attribute of Extension).
2000-08-02 00:04:13 +00:00
Greg Ward
04c90fc475
Ditched some debugging prints.
2000-08-02 00:01:56 +00:00
Greg Ward
159eb92239
Patch from Rene Liebscher: generate an /IMPLIB: option to ensure that
...
the linker leaves the (temporary) .lib file in the temporary dir. (Moved
from 'msvc_prelink_hack()' method in build_ext.py.)
2000-08-02 00:00:30 +00:00
Greg Ward
0419a4ffba
Patch from Rene Liebscher, tweaked by me:
...
- '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
2000-08-01 23:54:29 +00:00
Mark Hammond
21a4764b9a
As requested by Fred - mention that in the future a winreg module may make a comeback.
2000-08-01 23:49:50 +00:00
Fredrik Lundh
e186983842
final 0.9.8 updates:
...
-- added REPEAT_ONE operator
-- added ANY_ALL operator (used to represent "(?s).")
2000-08-01 22:47:49 +00:00
Guido van Rossum
fb06539e99
My fix to the URL accidentally also switched back to the "pre" module.
...
Undo that!
2000-08-01 21:22:16 +00:00
Fredrik Lundh
2f2c67d7e5
-- fixed width calculations for alternations
...
-- 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)
2000-08-01 21:05:41 +00:00
Tim Peters
329e29198d
Removed decl of unreferenced vrbl.
2000-08-01 21:00:58 +00:00
Guido van Rossum
8c74335807
Replace the jitterbug page with the SF Bug Tracker page.
2000-08-01 20:28:33 +00:00
Guido van Rossum
367e46a943
Of course, you meant "#if 0" and not "#ifdef 0". :)
2000-08-01 18:28:44 +00:00
Fredrik Lundh
29c4ba9ada
SRE 0.9.8: passes the entire test suite
...
-- 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
2000-08-01 18:20:07 +00:00
Fred Drake
19c6afb42b
Include the dependence of sysmodule on the patchlevel.h include, so
...
that sys.version_info will be built properly.
2000-08-01 17:46:22 +00:00
Jeremy Hylton
29b8d5acd0
add support for HTTPS
...
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.
2000-08-01 17:33:32 +00:00
Peter Schneider-Kamp
1c2b178ceb
Guido said this is food for the beta-testers<wink>
2000-08-01 16:53:44 +00:00
Guido van Rossum
7cee6ddcab
somehow the 'Total Keys=1' disappears. No other changes.
2000-08-01 15:50:09 +00:00
Fredrik Lundh
067bebfe2d
-- SRE 0.9.8: now that the bug is fixed, I might as well enable
...
the test again...
2000-08-01 13:16:55 +00:00
Fredrik Lundh
c2ed621d75
-- SRE 0.9.8: updated test scripts
2000-08-01 13:01:43 +00:00
Andrew M. Kuchling
a4e9a33382
Update e-mail address
2000-08-01 01:26:02 +00:00
Andrew M. Kuchling
b45bd325b5
Added Python function to emulate the ncurses has_key() function.
2000-08-01 01:21:11 +00:00
Peter Schneider-Kamp
f917bf6080
fixing a minor spelling mistake
2000-08-01 00:07:17 +00:00
Fred Drake
327e1878ac
Add magic to replace the xml package with _xmlplus at import time.
...
Update docstring to reflect change of name for the parsers subpackage.
2000-08-01 00:05:16 +00:00
Fred Drake
ede77bfda4
Rename the "parser" package to "parsers" to be compatible with the PyXML
...
project.
2000-07-31 23:59:54 +00:00
Fred Drake
fbd3b45bb7
Stop lying about [].pop() being experimental! There is no backing it out
...
at this point.
2000-07-31 23:42:23 +00:00
Peter Schneider-Kamp
25f68944c2
patch from Vladimir (move Py_Mem* interface to Include/pymem.h)
2000-07-31 22:19:30 +00:00
Jack Jansen
b88b0bce2a
ANSIfied.
2000-07-31 22:07:49 +00:00
Jack Jansen
cbfe3c8955
Two more cases of GUSI2 include access paths not being correct (reveiled by the new pyport.h).
2000-07-31 22:07:21 +00:00
Peter Schneider-Kamp
dc71cacc9c
replaced PyArgs_Parse by PyArgs_ParseTuple
...
changed error messages for extend method from "append" to "extend"
2000-07-31 21:57:30 +00:00
Peter Schneider-Kamp
5a65c2d436
added count, extend, index, pop and remove to arraymodule
2000-07-31 20:52:21 +00:00
Fred Drake
4640e13259
Change as suggested by Peter Funk <pf@artcom-gmbh.de>:
...
Move around the navigational links on the left-hand side of the navigation
bar to be more like the cursor keys.
2000-07-31 20:13:23 +00:00
Fred Drake
3d83fc3ab1
Change as suggested by Peter Funk <pf@artcom-gmbh.de>:
...
Create a hyperlink between the language reference and documentation for
the built in functions.
2000-07-31 20:08:23 +00:00