Marc-André Lemburg
ad7c98e264
This patch adds a new builtin unistr() which behaves like str()
...
except that it always returns Unicode objects.
A new C API PyObject_Unicode() is also provided.
This closes patch #101664 .
Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
2001-01-17 17:09:53 +00:00
Guido van Rossum
f98eda01ab
News item for rich comparisons.
...
(I'm going to check in some more uses of rich comparisons, but the
basic feature should be in place now.)
2001-01-17 15:54:45 +00:00
Barry Warsaw
573b54125d
Add a NEWS item about function attributes.
2001-01-15 20:43:18 +00:00
Guido van Rossum
051e335d42
Add note about new and improved xrange().
2001-01-15 19:11:10 +00:00
Guido van Rossum
da91f227ec
Add note about ftplib defaulting to passive mode.
2001-01-15 16:36:08 +00:00
Tim Peters
f29b64d243
Use the "MS" getline hack (fgets()) by default on non-get_unlocked
...
platforms. See NEWS for details.
2001-01-15 06:33:19 +00:00
Tim Peters
b9e202b2dc
Added Jeffery Collins.
2001-01-14 05:04:40 +00:00
Andrew M. Kuchling
f6f3a89fbd
Mention new curses.panel module
2001-01-13 14:53:34 +00:00
Martin v. Löwis
10a2787313
Document extensions to .pth files.
2001-01-13 09:54:41 +00:00
Guido van Rossum
1cc8f83666
News about from...import.
2001-01-12 16:25:08 +00:00
Guido van Rossum
ae72d87822
Typo.
2001-01-11 15:00:14 +00:00
Guido van Rossum
f61f166bca
Added a whole slew of news items. Not striving for completeness --
...
I've skipped all bugfixes, Unicode, distutils changes. But this
should be a start!
2001-01-10 20:13:55 +00:00
Tim Peters
742bb6f9fd
Clarification of new bisect module functions.
2001-01-05 08:05:32 +00:00
Martin v. Löwis
be4c0f56a2
Recognize pyc files even if they don't end in pyc.
...
Patch #103067 with modifications as discussed in email.
2001-01-04 20:30:56 +00:00
Guido van Rossum
c4e1775081
Two new names.
2001-01-03 23:51:26 +00:00
Tim Peters
36cdad12dd
Fred, THIS NEEDS DOCS! The function docstrings tell the tale.
...
Christmas present to myself: the bisect module didn't define what
happened if the new element was already in the list. It so happens
that it inserted the new element "to the right" of all equal elements.
Since it wasn't defined, among other bad implications it was a mystery
how to use bisect to determine whether an element was already in the
list (I've seen code that *assumed* "to the right" without justification).
Added new methods bisect_left and insort_left that insert "to the left"
instead; made the old names bisect and insort aliases for the new names
bisect_right and insort_right; beefed up docstrings to explain what
these actually do; and added a std test for the bisect module.
2000-12-29 02:06:45 +00:00
Barry Warsaw
e0c182fb5f
(python-font-lock-keywords): Add highlighting of `as' as a keyword,
...
but only in "import foo as bar" statements (including optional
preceding `from' clause).
2000-12-27 17:41:47 +00:00
Guido van Rossum
1378c32dd8
Document the -W option as best as I can.
...
Get rid of BeOpen references.
2000-12-19 03:21:54 +00:00
Andrew M. Kuchling
a1099be778
Fix typo
2000-12-15 01:16:43 +00:00
Guido van Rossum
3661d39474
Describe {}.popitem().
2000-12-12 22:10:31 +00:00
Tim Peters
d92dfe0ef5
SF bug 110843: Low FD_SETSIZE limit on Win32 (PR#41). Boosted to 512.
2000-12-12 01:18:41 +00:00
Guido van Rossum
37da22b3f4
The C+ compiler is called $(CXX) these days, not CCC.
...
This fixes SF Bug #124478 .
2000-12-06 23:46:29 +00:00
Tim Peters
9940b800a4
Made the description of %[udxXo] formats of negative longs in 2.1 more accurate.
...
I suggested to Guido that %u be deprecated (it seems useless in Python to me).
2000-12-01 07:59:35 +00:00
Tim Peters
a3a3a030af
Fox for SF bug #123859 : %[duxXo] long formats inconsistent.
2000-11-30 05:22:44 +00:00
Barry Warsaw
3c34bb33ff
(py-goto-beginning-of-tqs): When searching backwards for the matching
...
delimiter, watch out for backslash escaped delimiters. Also use =
instead of eq for character comparison (because a character is = to
it's integer value, but not eq to it).
2000-10-27 05:00:25 +00:00
Fred Drake
cf3bc8c5a5
Rename Setup.in to Setup.dist, and assume that configure will create
...
Setup (instead of creating it from the Makefile).
2000-10-26 17:07:40 +00:00
Tim Peters
adfb94fd79
Typo repair.
2000-10-16 20:51:33 +00:00
Jeremy Hylton
d867a2cc21
revise xml comment
2000-10-16 20:41:38 +00:00
Fred Drake
1a640506ec
Updated the XML package comment.
2000-10-16 20:27:25 +00:00
Tim Peters
989b7b91a1
Filled in math-module info; fixed a typo or two.
2000-10-16 20:24:53 +00:00
Jeremy Hylton
d6e2023107
Add NEWS for 2.0 final (there are a few XXX comments that must be
...
addressed).
Fix a few nits in 2.0c1 news.
2000-10-16 20:08:38 +00:00
Jeremy Hylton
21000caee7
distutils setup files for Tkinter
2000-10-16 15:36:25 +00:00
Jeremy Hylton
355e2f2bc8
misc. RPM support files
2000-10-16 15:34:52 +00:00
Jeremy Hylton
6040aaa9a2
add note explaining what a release candidate is
2000-10-09 21:27:22 +00:00
Tim Peters
46446d6242
Repaired IDLE Unicode bug description.
...
Added tokenize.py bugfix info.
2000-10-09 21:19:31 +00:00
Guido van Rossum
56fe7f8649
WAVE test + bugfix contributor.
2000-10-09 20:07:00 +00:00
Guido van Rossum
5c2c6046eb
And another.
2000-10-09 19:52:41 +00:00
Jeremy Hylton
32e20ff838
typo
2000-10-09 19:48:11 +00:00
Guido van Rossum
fded5ed251
One more name.
2000-10-09 19:29:35 +00:00
Jeremy Hylton
109212037b
added better description of BeOS changes from Donn Cave
2000-10-09 18:34:12 +00:00
Jeremy Hylton
ed9e644793
Summary of changes between 2.0b2 and 2.0c1
2000-10-09 18:26:42 +00:00
Jeremy Hylton
30e78773eb
new name
2000-10-09 18:26:16 +00:00
Fred Drake
3105f920bf
Added Daniel Dittmar, for helping get the configuration working for
...
Reliant UNIX.
2000-10-02 14:52:31 +00:00
Jeremy Hylton
625915eb4f
typo
2000-10-02 13:43:33 +00:00
Fred Drake
9f11cf8811
Capitalized an "if" that should have been -- noted by Grant Griffin
...
<grant.griffin@honeywell.com>.
2000-09-29 17:54:40 +00:00
Fred Drake
45888ffbd4
Added a missing "is" -- noted by Grant Griffin
...
<grant.griffin@honeywell.com>.
2000-09-29 17:09:11 +00:00
Jeremy Hylton
97693b0479
Fix GC news
2000-09-26 17:42:51 +00:00
Fred Drake
67233bc405
Fixed typo, description of changes to dbm module.
2000-09-26 16:40:27 +00:00
Jeremy Hylton
fa2e2c1469
The rest of the news for 2.0b2
2000-09-26 16:31:30 +00:00
Fred Drake
64bb380c09
Elaborated the notes on the XML support.
...
In the limits.h comment, noted that INT_MAX and LONG_MAX are guaranteed
to be defined.
Noted that Reliant UNIX now gets proper API support for extension modules.
2000-09-26 16:21:35 +00:00