summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Rene Liebscher: deleted unneeded hard-coded assignments of CC, RANLIB, etc.Greg Ward2000-08-021-17/+1
| | | | in '_init_nt()' (they were kludges for CygwinCCompiler and no longer needed).
* Rene Liebscher: factor 'find_executable()' out of '_spawn_nt()'.Greg Ward2000-08-021-13/+30
|
* Patch from Rene Liebscher. Some ugly changes, but supposedly this makesGreg Ward2000-08-021-29/+70
| | | | | | | | | | | | | 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
* Ditched 'abspath()' -- don't need 1.5.1 compatability hacks anymore.Greg Ward2000-08-021-10/+0
|
* Removed 'export_symbol_file'.Greg Ward2000-08-021-8/+1
| | | | | 'export_symbols' can be None (not sure this is a good idea: it's inconsistent with every other instance attribute of Extension).
* Ditched some debugging prints.Greg Ward2000-08-021-3/+0
|
* Patch from Rene Liebscher: generate an /IMPLIB: option to ensure thatGreg Ward2000-08-021-1/+13
| | | | | the linker leaves the (temporary) .lib file in the temporary dir. (Moved from 'msvc_prelink_hack()' method in build_ext.py.)
* Patch from Rene Liebscher, tweaked by me:Greg Ward2000-08-011-44/+41
| | | | | | | | | | | - '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
* As requested by Fred - mention that in the future a winreg module may make a ↵Mark Hammond2000-08-011-2/+3
| | | | comeback.
* final 0.9.8 updates:Fredrik Lundh2000-08-016-68/+105
| | | | | -- added REPEAT_ONE operator -- added ANY_ALL operator (used to represent "(?s).")
* My fix to the URL accidentally also switched back to the "pre" module.Guido van Rossum2000-08-011-2/+2
| | | | Undo that!
* -- fixed width calculations for alternationsFredrik Lundh2000-08-014-35/+199
| | | | | | | -- 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)
* Removed decl of unreferenced vrbl.Tim Peters2000-08-011-1/+0
|
* Replace the jitterbug page with the SF Bug Tracker page.Guido van Rossum2000-08-011-3/+3
|
* Of course, you meant "#if 0" and not "#ifdef 0". :)Guido van Rossum2000-08-011-1/+1
|
* SRE 0.9.8: passes the entire test suiteFredrik Lundh2000-08-017-536/+370
| | | | | | | | | -- 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
* Include the dependence of sysmodule on the patchlevel.h include, soFred Drake2000-08-011-1/+1
| | | | that sys.version_info will be built properly.
* add support for HTTPSJeremy Hylton2000-08-011-16/+27
| | | | | | | 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.
* Guido said this is food for the beta-testers<wink>Peter Schneider-Kamp2000-08-011-0/+5
|
* somehow the 'Total Keys=1' disappears. No other changes.Guido van Rossum2000-08-011-23/+0
|
* -- SRE 0.9.8: now that the bug is fixed, I might as well enableFredrik Lundh2000-08-011-4/+2
| | | | the test again...
* -- SRE 0.9.8: updated test scriptsFredrik Lundh2000-08-013-21/+6
|
* Update e-mail addressAndrew M. Kuchling2000-08-011-1/+1
|
* Added Python function to emulate the ncurses has_key() function.Andrew M. Kuchling2000-08-012-0/+197
|
* fixing a minor spelling mistakePeter Schneider-Kamp2000-08-011-1/+1
|
* Add magic to replace the xml package with _xmlplus at import time.Fred Drake2000-08-011-1/+11
| | | | Update docstring to reflect change of name for the parsers subpackage.
* Rename the "parser" package to "parsers" to be compatible with the PyXMLFred Drake2000-07-311-0/+0
| | | | project.
* Stop lying about [].pop() being experimental! There is no backing it outFred Drake2000-07-311-4/+3
| | | | at this point.
* patch from Vladimir (move Py_Mem* interface to Include/pymem.h)Peter Schneider-Kamp2000-07-3110-177/+221
|
* ANSIfied.Jack Jansen2000-07-311-6/+6
|
* Two more cases of GUSI2 include access paths not being correct (reveiled by ↵Jack Jansen2000-07-312-0/+0
| | | | the new pyport.h).
* replaced PyArgs_Parse by PyArgs_ParseTuplePeter Schneider-Kamp2000-07-311-34/+39
| | | | changed error messages for extend method from "append" to "extend"
* added count, extend, index, pop and remove to arraymodulePeter Schneider-Kamp2000-07-314-74/+233
|
* Change as suggested by Peter Funk <pf@artcom-gmbh.de>:Fred Drake2000-07-311-4/+5
| | | | | Move around the navigational links on the left-hand side of the navigation bar to be more like the cursor keys.
* Change as suggested by Peter Funk <pf@artcom-gmbh.de>:Fred Drake2000-07-311-2/+3
| | | | | Create a hyperlink between the language reference and documentation for the built in functions.
* A different solution for Patch #100979: support for out-of-tree "make TAGS"Guido van Rossum2000-07-311-3/+6
| | | | | | | | | The version there built the tags and TAGS files in the build directory. I like them in the source directory. The simplest solution is to cd to the source directory before running ctags or etags. Tested both superficially and they work for me, on Linux Red Hat 6.1.
* Organized a little bit; merged in some items from the 1.5.2p2 branch thatFred Drake2000-07-311-16/+46
| | | | did not get handled.
* Update to indicate the appropriate version of LaTeX2HTML. Update pointerFred Drake2000-07-311-8/+6
| | | | for retrieving new versions.
* Many changes to work with newer versions of LaTeX2HTML. This has beenFred Drake2000-07-311-208/+129
| | | | tested with version 99.2beta8.
* Small changes to reflect changes in LaTeX2HTML support for newer versionsFred Drake2000-07-312-3/+8
| | | | of LaTeX2HTML.
* Two minor nits from Gerry Weiner (no working email address) aboutFred Drake2000-07-311-3/+3
| | | | describing the methods of dictionaries.
* Always pass the split level to LaTeX2HTML as a command line option sinceFred Drake2000-07-311-4/+4
| | | | | newer versions only process one initialization file, and do so at a different time than previous versions.
* Moshe Zadka <mzadka@geocities.com>:Fred Drake2000-07-311-0/+9
| | | | | Document new method in shutil (copyfileobj). Minor clarification by Fred.
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-3131-51/+341
| | | | marked my*.h as obsolete
* Update, 'cause Guido said it should be this way.Fred Drake2000-07-311-4/+4
|
* Fix inconsistent use of tab/space in indentation.Thomas Wouters2000-07-301-8/+8
|
* More Windows changes.Mark Hammond2000-07-301-24/+38
| | | | | | | | * After discussion with Trent, all INT_PTR references have been removed in favour of the HANDLE it should always have been. Trent can see no 64bit issues here. * In this process, I noticed that the close operation was dangerous, in that we could end up passing bogus results to the Win32 API. These result of the API functions passed the bogus values were never (and still are not) checked, but this is closer to "the right thing" (tm) than before. Tested on Windows and Linux.
* Fixes for Windows (but also tested on Linux). Test suite now completes, and ↵Mark Hammond2000-07-301-6/+46
| | | | | | this module should not leak in the face of errors. Checkin that replaces the INT_PTR types with HANDLEs still TBD (but as that is a "spelling" patch, rather than a functional one, I will commit it seperately.
* Test that after resizing the mmap'd file, we can't seek beyond the new size.Mark Hammond2000-07-301-1/+8
|
* Catch syntax errors from processing template lines and turn them intoGreg Ward2000-07-301-2/+9
| | | | | mere warnings. Call 'findall()' on our FileList object before we start using it seriously.