Barry Warsaw
5a06fae399
Add Setup.config
2000-06-30 16:09:01 +00:00
Fred Drake
30f76ffd00
Update version numbering from 1.6 to 2.0.
2000-06-30 16:06:19 +00:00
Barry Warsaw
61b49b3d6b
Removed the comment about the thread module.
2000-06-30 16:05:22 +00:00
Barry Warsaw
6de7213e7a
Setup.thread => Setup.config
2000-06-30 16:04:18 +00:00
Barry Warsaw
cf053b15b5
Added #undef of WITH_CYCLE_GC for autoconf's delight.
2000-06-30 16:02:58 +00:00
Fred Drake
633a8d90d5
Update authors email address and corporate affiliation.
2000-06-30 15:54:18 +00:00
Fred Drake
e06f0f9a13
Uncomment some additions from Vladimir pertinent to 2.0 but not 1.5.2.
2000-06-30 15:52:39 +00:00
Mark Hammond
306e2403fa
Python's .lib is now named Python20.lib
2000-06-30 15:47:02 +00:00
Fred Drake
4247ba63bd
Martin von Löwis <loewis@informatik.hu-berlin.de>:
...
Do not forget to install the xml packages!
2000-06-30 15:46:08 +00:00
Fred Drake
aad1d4b8f2
Update the release number & date, Guido's employer.
2000-06-30 15:35:16 +00:00
Fred Drake
f0e88980f3
Document randrange().
2000-06-30 15:32:31 +00:00
Fred Drake
2e7cbc2cda
Fix an icon width; a "32" became a "3" somehow, and that did not look
...
as nice. ;)
2000-06-30 15:30:33 +00:00
Jeremy Hylton
094c9e587c
remove all prints (since the prints where of memory locations)
2000-06-30 15:13:15 +00:00
Fred Drake
a44d353e2b
Trent Mick <trentm@activestate.com>:
...
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 .
2000-06-30 15:01:00 +00:00
Marc-André Lemburg
d49e5b4667
Marc-Andre Lemburg <mal@lemburg.com>:
...
A previous patch by Jack Jansen was accidently reverted.
2000-06-30 14:58:20 +00:00
Guido van Rossum
ed2bf9c880
Oops.
...
- 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.
2000-06-30 14:55:26 +00:00
Guido van Rossum
cce79a1582
Poke and hope for Tcl version: now settable through _TCLMINOR_
...
variable...
2000-06-30 14:50:52 +00:00
Jeremy Hylton
fa01bf15b4
add gcmodule
2000-06-30 14:38:41 +00:00
Guido van Rossum
b3c66be8a9
Change the include etc paths to Tcl 8.3.1.
2000-06-30 14:33:47 +00:00
Guido van Rossum
a1956e2f26
Move Wise install dir consistently to C:\Wise. Don't use %_WISE_% in
...
include, it doesn't seem to work.
2000-06-30 14:30:28 +00:00
Guido van Rossum
f00562a962
Poke and hope for Tim...
...
(Change title to beta 1, change a few paths for typical Win98 setup.)
2000-06-30 14:20:19 +00:00
Guido van Rossum
3afe36d63f
More 2.0 stuff -- fix workspace, remove 1.6 files
2000-06-30 14:04:10 +00:00
Fredrik Lundh
0640e1161f
the mad patcher strikes again:
...
-- 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)
2000-06-30 13:55:15 +00:00
Guido van Rossum
ae1b5b2e98
Trivial commit to test Windows CVS capabilities.
2000-06-30 13:00:32 +00:00
Andrew M. Kuchling
62cdd96acb
Credit /F in a few places
...
Mention the GC module
Add MH's explanation of the Windows crash
Add atexit.py
2000-06-30 12:46:41 +00:00
Fredrik Lundh
43b3b49b5a
- fixed lookahead assertions ( #10 , #11 , #12 )
...
- untabified sre_constants.py
2000-06-30 10:41:31 +00:00
Marc-André Lemburg
a4657f736c
Marc-Andre Lemburg <mal@lemburg.com>:
...
Fixed a quote bug. Thanks to Fredrik Lundh.
2000-06-30 10:30:35 +00:00
Marc-André Lemburg
f28dd83b86
Marc-Andre Lemburg <mal@lemburg.com>:
...
New buffer overflow checks for formatting strings.
By Trent Mick.
2000-06-30 10:29:57 +00:00
Marc-André Lemburg
587794b386
Marc-Andre Lemburg <mal@lemburg.com>:
...
Added test output.
2000-06-30 10:28:32 +00:00
Marc-André Lemburg
d70141a2d9
Marc-Andre Lemburg <mal@lemburg.com>:
...
New test for huge formatting strings (these could cause core
dumps in previous versions).
By Trent Mick.
2000-06-30 10:26:29 +00:00
Marc-André Lemburg
e3f257e681
Marc-Andre Lemburg <mal@lemburg.com>:
...
Include <> -> "". Removed some left over code at the end of the file.
Patch by Bill Tutt.
2000-06-30 09:56:00 +00:00
Marc-André Lemburg
90321ec314
Marc-Andre Lemburg <mal@lemburg.com>:
...
Include <> -> "". Patch by Bill Tutt.
2000-06-30 09:53:22 +00:00
Marc-André Lemburg
6cdec2efbb
New test for the ucnhash module.
2000-06-30 09:45:20 +00:00
Marc-André Lemburg
5f2e75e87c
Marc-Andre Lemburg <mal@lemburg.com>:
...
Updated test output (the ucn tests are now in test_ucn).
2000-06-30 09:14:13 +00:00
Marc-André Lemburg
af69f15d21
Marc-Andre Lemburg <mal@lemburg.com>:
...
Moved tests of new Unicode Char Name support to a separate test.
2000-06-30 09:13:35 +00:00
Fredrik Lundh
b71624e698
- added support for (?P=name)
...
(closes #3 and #7 from the status report)
2000-06-30 09:13:06 +00:00
Tim Peters
c155f828fa
Making a tiny change to figure out what I'm going to screw up
...
by trying to use CVS under Windows at all ...
2000-06-30 09:04:35 +00:00
Fredrik Lundh
90a0791322
- pedantic: make sure "python -t" doesn't complain...
2000-06-30 07:50:59 +00:00
Fredrik Lundh
df02d0b3f0
- fixed default value handling in group/groupdict
...
- added test suite
2000-06-30 07:08:20 +00:00
Skip Montanaro
47c60ec9a0
Describe a bit about writing test cases for Python...
2000-06-30 06:08:35 +00:00
Jeremy Hylton
c5007aa5c3
final patches from Neil Schemenauer for garbage collection
2000-06-30 05:02:53 +00:00
Jeremy Hylton
4e542a3d99
replace constant 1 with symbolic constant METH_VARARGS
...
another typo caught by Rob Hooft
2000-06-30 04:59:59 +00:00
Jeremy Hylton
9262b8ab1f
another typo caught by Rob Hooft
2000-06-30 04:59:17 +00:00
Jeremy Hylton
2a2c218525
penultimate phase of Neil Schemenauer's GC patches
...
update configure files (turn --with-cycle-gc on for beta release?)
2000-06-30 04:57:55 +00:00
Fred Drake
57a2f7f8ef
Change description of altzone to not refer to the "0th meridian".
2000-06-30 04:24:52 +00:00
Fred Drake
9a748aa832
Say "manual page", not "man page", when referring to the Unix manual.
2000-06-30 04:21:41 +00:00
Fred Drake
947121fd9c
Add a comment about needing to change a #include if using a version of
...
Berkeley DB 2.0 or newer; most Linux distros will include a more recent
version than 1.85.
2000-06-30 04:17:11 +00:00
Fred Drake
abbc7344a4
Make sure to note that this module was added for Python 2.0!
2000-06-30 03:50:06 +00:00
Fred Drake
6e71cdd9f1
Reflect the name change to _winreg; we still need documentation for the
...
new winreg module.
2000-06-30 03:45:40 +00:00
Fred Drake
01df453f16
Update Python version numbers from 1.6 to 2.0 where appropriate.
...
Make some references between the distutils documents hyperlinks using
the \citetitle markup.
2000-06-30 03:36:41 +00:00