summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Document randrange().Fred Drake2000-06-301-0/+8
|
* Fix an icon width; a "32" became a "3" somehow, and that did not lookFred Drake2000-06-301-1/+1
| | | | as nice. ;)
* remove all prints (since the prints where of memory locations)Jeremy Hylton2000-06-302-23/+0
|
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-3022-153/+153
| | | | | | | | | | | | | | | | | | | | | | | | | | The common technique for printing out a pointer has been to cast to a long and use the "%lx" printf modifier. This is incorrect on Win64 where casting to a long truncates the pointer. The "%p" formatter should be used instead. The problem as stated by Tim: > Unfortunately, the C committee refused to define what %p conversion "looks > like" -- they explicitly allowed it to be implementation-defined. Older > versions of Microsoft C even stuck a colon in the middle of the address (in > the days of segment+offset addressing)! The result is that the hex value of a pointer will maybe/maybe not have a 0x prepended to it. Notes on the patch: There are two main classes of changes: - in the various repr() functions that print out pointers - debugging printf's in the various thread_*.h files (these are why the patch is large) Closes SourceForge patch #100505.
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-1/+1
| | | | A previous patch by Jack Jansen was accidently reverted.
* Oops.Guido van Rossum2000-06-301-2/+2
| | | | | | | - The Tcl minor version should be 3 -- we're now using 8.3.1. - Remove the version number from yet another Tcl source file. Note that Tcl should be installed in C:\src\tcl for this to work.
* Poke and hope for Tcl version: now settable through _TCLMINOR_Guido van Rossum2000-06-301-4/+8
| | | | variable...
* add gcmoduleJeremy Hylton2000-06-301-0/+14
|
* Change the include etc paths to Tcl 8.3.1.Guido van Rossum2000-06-301-4/+4
|
* Move Wise install dir consistently to C:\Wise. Don't use %_WISE_% inGuido van Rossum2000-06-301-3/+3
| | | | include, it doesn't seem to work.
* Poke and hope for Tim...Guido van Rossum2000-06-301-6/+6
| | | | (Change title to beta 1, change a few paths for typical Win98 setup.)
* More 2.0 stuff -- fix workspace, remove 1.6 filesGuido van Rossum2000-06-303-3009/+16
|
* the mad patcher strikes again:Fredrik Lundh2000-06-305-66/+73
| | | | | | | | | | | | | | | -- added pickling support (only works if sre is imported) -- fixed wordsize problems in engine (instead of casting literals down to the character size, cast characters up to the literal size (same as the code word size). this prevents false hits when you're matching a unicode pattern against an 8-bit string. (unfortunately, this broke another test, but I think the test should be changed in this case; more on that on python-dev) -- added sre.purge function (unofficial, clears the cache)
* Trivial commit to test Windows CVS capabilities.Guido van Rossum2000-06-301-2/+2
|
* Credit /F in a few placesAndrew M. Kuchling2000-06-301-14/+33
| | | | | | Mention the GC module Add MH's explanation of the Windows crash Add atexit.py
* - fixed lookahead assertions (#10, #11, #12)Fredrik Lundh2000-06-306-90/+146
| | | | - untabified sre_constants.py
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-1/+1
| | | | Fixed a quote bug. Thanks to Fredrik Lundh.
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-302-49/+129
| | | | | | New buffer overflow checks for formatting strings. By Trent Mick.
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-0/+1
| | | | Added test output.
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-0/+52
| | | | | | | New test for huge formatting strings (these could cause core dumps in previous versions). By Trent Mick.
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-60/+1
| | | | | Include <> -> "". Removed some left over code at the end of the file. Patch by Bill Tutt.
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-1/+1
| | | | Include <> -> "". Patch by Bill Tutt.
* New test for the ucnhash module.Marc-André Lemburg2000-06-301-0/+82
|
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-3/+0
| | | | Updated test output (the ucn tests are now in test_ucn).
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-74/+0
| | | | Moved tests of new Unicode Char Name support to a separate test.
* - added support for (?P=name)Fredrik Lundh2000-06-302-6/+17
| | | | (closes #3 and #7 from the status report)
* Making a tiny change to figure out what I'm going to screw upTim Peters2000-06-301-1/+2
| | | | by trying to use CVS under Windows at all ...
* - pedantic: make sure "python -t" doesn't complain...Fredrik Lundh2000-06-304-587/+587
|
* - fixed default value handling in group/groupdictFredrik Lundh2000-06-304-19/+423
| | | | - added test suite
* Describe a bit about writing test cases for Python...Skip Montanaro2000-06-301-0/+77
|
* final patches from Neil Schemenauer for garbage collectionJeremy Hylton2000-06-3016-18/+956
|
* replace constant 1 with symbolic constant METH_VARARGSJeremy Hylton2000-06-301-9/+9
| | | | another typo caught by Rob Hooft
* another typo caught by Rob HooftJeremy Hylton2000-06-301-1/+1
|
* penultimate phase of Neil Schemenauer's GC patchesJeremy Hylton2000-06-303-314/+352
| | | | update configure files (turn --with-cycle-gc on for beta release?)
* Change description of altzone to not refer to the "0th meridian".Fred Drake2000-06-301-2/+2
|
* Say "manual page", not "man page", when referring to the Unix manual.Fred Drake2000-06-301-1/+1
|
* Add a comment about needing to change a #include if using a version ofFred Drake2000-06-301-0/+1
| | | | | Berkeley DB 2.0 or newer; most Linux distros will include a more recent version than 1.85.
* Make sure to note that this module was added for Python 2.0!Fred Drake2000-06-301-0/+2
|
* Reflect the name change to _winreg; we still need documentation for theFred Drake2000-06-301-2/+6
| | | | new winreg module.
* Update Python version numbers from 1.6 to 2.0 where appropriate.Fred Drake2000-06-302-17/+19
| | | | | Make some references between the distutils documents hyperlinks using the \citetitle markup.
* Bump version to 0.9.Greg Ward2000-06-301-1/+1
|
* Bump version to 2.0.Guido van Rossum2000-06-302-217/+299
| | | | | | Note that configure hadn't been checked in a few times so it has more changes, catching up with the last few changes to congifure.in as well.
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-13/+46
| | | | | | | | | | | | | | | | | | This patch fixes possible overflows in the socket module for 64-bit platforms (mainly Win64). The changes are: - abstract the socket type to SOCKET_T (this is SOCKET on Windows, int on Un*x), this is necessary because sizeof(SOCKET) > sizeof(int) on Win64 - use INVALID_SOCKET on Win32/64 for an error return value for accept() - ensure no overflow of the socket variable for: (1) a PyObject return value (use PyLong_FromLongLong if necessary); and (2) printf formatting in repr(). Closes SourceForge patch #100516.
* Somehow this had HAVE_SYS_SOCKET_H twice. Once is enough. RerunningGuido van Rossum2000-06-301-3/+0
| | | | autoheader revealed this.
* Patch by Nadav Horesh to make acosh and asinh better.Guido van Rossum2000-06-301-7/+12
| | | | | | | Tim posted a long comment to python-dev (subject: "Controversial patch (cmath)"; date: 6/29/00). The conclusion is that this whole module stinks and this patch isn't perfect, but it's better than the acosh and asinh we had, so let's check it in.
* Finished the GC section.Andrew M. Kuchling2000-06-301-71/+67
| | | | | | Removed all but one XXX. Replaced 1.6 with 2.0. Various minor corrections and additions.
* Document recently-added mouse-related functionsAndrew M. Kuchling2000-06-301-0/+50
|
* - fixed split behaviour on empty matchesFredrik Lundh2000-06-304-42/+55
| | | | | | - fixed compiler problems when using locale/unicode flags - fixed group/octal code parsing in sub/subn templates
* Allow 2.0 on the list of target versions. NB. this isn't enough: the GUI part,Greg Ward2000-06-291-5/+5
| | | | | misc/install.c, still needs to be updated, and it looks like a non-trivial change.
* still trying to figure out how to fix the remainingFredrik Lundh2000-06-292-13/+134
| | | | | | | | | | | | | | | | | | | group reset problem. in the meantime, I added some optimizations: - added "inline" directive to LOCAL (this assumes that AC_C_INLINE does what it's supposed to do). to compile SRE on a non-unix platform that doesn't support inline, you have to add a "#define inline" somewhere... - added code to generate a SRE_OP_INFO primitive - added code to do fast prefix search (enabled by the USE_FAST_SEARCH define; default is on, in this release)