]> granicus.if.org Git - python/log
python
17 years ago#856047: respect the ``no_proxy`` env var when checking for proxies
Georg Brandl [Sun, 20 Jan 2008 12:05:43 +0000 (12:05 +0000)]
#856047: respect the ``no_proxy`` env var when checking for proxies
in urllib and using the other ``_proxy`` env vars.
Original patch by Donovan Baarda.

17 years ago#1178141: add addinfourl.code to get http status code from urllib.
Georg Brandl [Sun, 20 Jan 2008 11:43:03 +0000 (11:43 +0000)]
#1178141: add addinfourl.code to get http status code from urllib.

17 years ago#1351692: in pprint, always call format() for dict and list items to enable
Georg Brandl [Sun, 20 Jan 2008 11:13:29 +0000 (11:13 +0000)]
#1351692: in pprint, always call format() for dict and list items to enable
custom formatting of contents via subclassing PrettyPrinter.

17 years agoDocument that zipfile decryption is insanely slow and fix a typo and
Gregory P. Smith [Sun, 20 Jan 2008 01:32:00 +0000 (01:32 +0000)]
Document that zipfile decryption is insanely slow and fix a typo and
blatant lie in a docstring (it is not useful for security regardless of
how you spell it).

17 years agonote for r60121
Gregory P. Smith [Sun, 20 Jan 2008 01:26:04 +0000 (01:26 +0000)]
note for r60121

17 years agoFix zipfile decryption. The check for validity only worked on one
Gregory P. Smith [Sun, 20 Jan 2008 01:21:03 +0000 (01:21 +0000)]
Fix zipfile decryption.  The check for validity only worked on one
type of encrypted zip files.  Files using extended local headers
needed to compare the check byte against different values.  (according
to reading the infozip unzip crypt.c source code)

Fixes issue1003.

17 years agoAdd an interactive test script for exercising curses
Andrew M. Kuchling [Sun, 20 Jan 2008 00:12:19 +0000 (00:12 +0000)]
Add an interactive test script for exercising curses

17 years agoPatch #1048820 from Stefan Wehr: add insert-mode editing to Textbox.
Andrew M. Kuchling [Sun, 20 Jan 2008 00:00:38 +0000 (00:00 +0000)]
Patch #1048820 from Stefan Wehr: add insert-mode editing to Textbox.
Fix an off-by-one error I noticed.

17 years agoFixes/Accepts Patch for issue1189216 - Work properly with archives
Gregory P. Smith [Sat, 19 Jan 2008 23:10:52 +0000 (23:10 +0000)]
Fixes/Accepts Patch for issue1189216 - Work properly with archives
that have file headers past the 2**31 byte boundary.

17 years agoFix issue 1300: Quote command line arguments that contain a '|' character in
Gregory P. Smith [Sat, 19 Jan 2008 22:49:37 +0000 (22:49 +0000)]
Fix issue 1300: Quote command line arguments that contain a '|' character in
subprocess.list2cmdline (windows).

17 years agoUndo an unnecessary else: and indentation that r60104 added.
Gregory P. Smith [Sat, 19 Jan 2008 22:23:56 +0000 (22:23 +0000)]
Undo an unnecessary else: and indentation that r60104 added.

try:
  ...
except:
  ...
  raise
else:
  ...

the else: is unecessary due to the blind except: with a raise.

17 years agoMissed one big file to split up.
Georg Brandl [Sat, 19 Jan 2008 22:14:27 +0000 (22:14 +0000)]
Missed one big file to split up.

17 years agoSplit the monstrous C API manual files in smaller parts.
Georg Brandl [Sat, 19 Jan 2008 22:08:21 +0000 (22:08 +0000)]
Split the monstrous C API manual files in smaller parts.

17 years agoBug 1296: restore text describing OptionGroup
Andrew M. Kuchling [Sat, 19 Jan 2008 21:00:38 +0000 (21:00 +0000)]
Bug 1296: restore text describing OptionGroup

17 years agonote about r60104
Gregory P. Smith [Sat, 19 Jan 2008 21:00:37 +0000 (21:00 +0000)]
note about r60104

17 years agoFixes issue1336 - a race condition could occur when forking if the gc
Gregory P. Smith [Sat, 19 Jan 2008 20:57:59 +0000 (20:57 +0000)]
Fixes issue1336 - a race condition could occur when forking if the gc
kicked in during the critical section.  solution: disable gc during
that section.  Patch contributed by jpa and updated by me to cover the
race condition still existing what therve from twistedmatrix pointed
out (already seen and fixed in twisted's own subprocess code).

17 years ago#1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods.
Georg Brandl [Sat, 19 Jan 2008 20:53:07 +0000 (20:53 +0000)]
#1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods.

17 years agofix comment typos, use not arg instead of arg == "", add test coverage
Gregory P. Smith [Sat, 19 Jan 2008 20:49:02 +0000 (20:49 +0000)]
fix comment typos, use not arg instead of arg == "", add test coverage
for inside of the final if needquotes: within subprocess.list2cmdline().

17 years agoPatch #1019808 from Federico Schwindt: Return correct socket error when
Andrew M. Kuchling [Sat, 19 Jan 2008 20:47:59 +0000 (20:47 +0000)]
Patch #1019808 from Federico Schwindt: Return correct socket error when
a default timeout has been set, by using getsockopt() to get the error
condition (instead of trying another connect() call, which seems to be
a Linuxism).

2.5 bugfix candidate, assuming no one reports any problems with this change.

17 years ago#1411695: clarify behavior of xml.sax.utils.[un]escape.
Georg Brandl [Sat, 19 Jan 2008 20:40:24 +0000 (20:40 +0000)]
#1411695: clarify behavior of xml.sax.utils.[un]escape.

17 years ago#1663329: add os.closerange() to close a range of fds,
Georg Brandl [Sat, 19 Jan 2008 20:22:13 +0000 (20:22 +0000)]
#1663329: add os.closerange() to close a range of fds,
ignoring errors, and use this in subprocess to speed up
subprocess creation in close_fds mode. Patch by Mike Klaas.

17 years agoBug 1277: make Maildir use the user-provided factory instead of hard-wiring MaildirMe...
Andrew M. Kuchling [Sat, 19 Jan 2008 20:12:04 +0000 (20:12 +0000)]
Bug 1277: make Maildir use the user-provided factory instead of hard-wiring MaildirMessage.
2.5.2 bugfix candidate.

17 years agoFix #1146: TextWrap vs words 1-character shorter than the width.
Georg Brandl [Sat, 19 Jan 2008 19:48:19 +0000 (19:48 +0000)]
Fix #1146: TextWrap vs words 1-character shorter than the width.
Patch by Quentin Gallet-Gilles.

17 years agoFix #1679: "0x" was taken as a valid integer literal.
Georg Brandl [Sat, 19 Jan 2008 19:27:05 +0000 (19:27 +0000)]
Fix #1679: "0x" was taken as a valid integer literal.
Fixes the tokenizer, tokenize.py and int() to reject this.
Patches by Malte Helmert.

17 years agoAdd item
Andrew M. Kuchling [Sat, 19 Jan 2008 19:14:05 +0000 (19:14 +0000)]
Add item

17 years agomissing from r60088 checkin.
Skip Montanaro [Sat, 19 Jan 2008 18:47:24 +0000 (18:47 +0000)]
missing from r60088 checkin.

17 years agoComment in NEWS regarding the change in trace.py.
Facundo Batista [Sat, 19 Jan 2008 18:45:46 +0000 (18:45 +0000)]
Comment in NEWS regarding the change in trace.py.

17 years agoFix #1693149. Now you can pass several modules separated by
Facundo Batista [Sat, 19 Jan 2008 18:38:19 +0000 (18:38 +0000)]
Fix #1693149.  Now you can pass several modules separated by
coma to trace.py in the same --ignore-module option.
Thanks Raghuram Devarakonda.

17 years agoPatch #976880: add mmap .rfind() method, and 'end' paramter to .find().
Andrew M. Kuchling [Sat, 19 Jan 2008 18:18:41 +0000 (18:18 +0000)]
Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().
Contributed by John Lenton.

17 years agoSort two names into position
Andrew M. Kuchling [Sat, 19 Jan 2008 18:08:52 +0000 (18:08 +0000)]
Sort two names into position

17 years ago#1782: don't leak in error case in PyModule_AddXxxConstant. Patch by Hrvoje Nikšić.
Georg Brandl [Sat, 19 Jan 2008 18:02:46 +0000 (18:02 +0000)]
#1782: don't leak in error case in PyModule_AddXxxConstant. Patch by Hrvoje Nikšić.

17 years agoClarify thread.join() docs. #1873.
Georg Brandl [Sat, 19 Jan 2008 17:38:53 +0000 (17:38 +0000)]
Clarify thread.join() docs. #1873.

17 years agoDisabled test_xmlrpc:test_404. It's causing lots of false alarms.
Christian Heimes [Sat, 19 Jan 2008 16:39:27 +0000 (16:39 +0000)]
Disabled test_xmlrpc:test_404. It's causing lots of false alarms.
I also disabled a test in test_ssl which requires network access to svn.python.org. This fixes a bug Skip has reported a while ago.

17 years agoAdd item
Andrew M. Kuchling [Sat, 19 Jan 2008 16:34:09 +0000 (16:34 +0000)]
Add item

17 years agoPatch #742598 from Michael Pomraning: add .timeout attribute to SocketServer that...
Andrew M. Kuchling [Sat, 19 Jan 2008 16:26:13 +0000 (16:26 +0000)]
Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer that will call
.handle_timeout() method when no requests are received within the timeout period.

17 years agoFix typos.
Georg Brandl [Sat, 19 Jan 2008 15:22:16 +0000 (15:22 +0000)]
Fix typos.

17 years agoPolish sentence
Andrew M. Kuchling [Sat, 19 Jan 2008 15:16:37 +0000 (15:16 +0000)]
Polish sentence

17 years agoUpdate for threading.local test.
Christian Heimes [Sat, 19 Jan 2008 15:06:09 +0000 (15:06 +0000)]
Update for threading.local test.

17 years agoAdded unit test to verify that threading.local doesn't cause ref leaks. It seems...
Christian Heimes [Sat, 19 Jan 2008 13:46:06 +0000 (13:46 +0000)]
Added unit test to verify that threading.local doesn't cause ref leaks. It seems that the thread local storage always keeps the storage of the last stopped thread alive. Can anybody comment on it, please?

17 years agoPolish sentence
Andrew M. Kuchling [Sat, 19 Jan 2008 13:33:20 +0000 (13:33 +0000)]
Polish sentence

17 years agoFix issue #1822: MIMEMultipart.is_multipart() behaves correctly for a
Facundo Batista [Sat, 19 Jan 2008 12:32:27 +0000 (12:32 +0000)]
Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for a
just-created (and empty) instance.  Added tests for this. Thanks
Jonathan Share.

17 years agoIndentation normalization.
Georg Brandl [Sat, 19 Jan 2008 10:18:07 +0000 (10:18 +0000)]
Indentation normalization.

17 years agoAmend curses docs by info how to write non-ascii characters.
Georg Brandl [Sat, 19 Jan 2008 10:16:09 +0000 (10:16 +0000)]
Amend curses docs by info how to write non-ascii characters.
Thanks to Jeroen Ruigrok van der Werven.

17 years agoFix markup.
Georg Brandl [Sat, 19 Jan 2008 10:11:27 +0000 (10:11 +0000)]
Fix markup.

17 years agoSeveral tweaks: add construction from strings and .from_decimal(), change
Jeffrey Yasskin [Sat, 19 Jan 2008 09:56:06 +0000 (09:56 +0000)]
Several tweaks: add construction from strings and .from_decimal(), change
__init__ to __new__ to enforce immutability, and remove "rational." from repr
and the parens from str.

17 years agoThis got fixed for classic classes in r60057,
Guido van Rossum [Fri, 18 Jan 2008 23:05:40 +0000 (23:05 +0000)]
This got fixed for classic classes in r60057,
and backported to 2.5.2 in 60056.

17 years agoBetter variable name in an example.
Raymond Hettinger [Fri, 18 Jan 2008 21:14:58 +0000 (21:14 +0000)]
Better variable name in an example.

17 years agoFix an edge case whereby the __del__() method of a classic class could
Guido van Rossum [Fri, 18 Jan 2008 20:56:30 +0000 (20:56 +0000)]
Fix an edge case whereby the __del__() method of a classic class could
create a new weakref to the object.

17 years agoSilence Coverity false alerts with CIDs #172, #183, #184
Christian Heimes [Fri, 18 Jan 2008 19:12:56 +0000 (19:12 +0000)]
Silence Coverity false alerts with CIDs #172, #183, #184

17 years agoAdded bytes and b'' as aliases for str and ''
Christian Heimes [Fri, 18 Jan 2008 18:24:07 +0000 (18:24 +0000)]
Added bytes and b'' as aliases for str and ''

17 years agoNote that genexps are function scopes too and therefore won't see class attributes.
Georg Brandl [Fri, 18 Jan 2008 16:42:57 +0000 (16:42 +0000)]
Note that genexps are function scopes too and therefore won't see class attributes.

17 years agoAdded LoggerAdapter class, changed copyright dates, made check for extra parameter...
Vinay Sajip [Fri, 18 Jan 2008 15:55:57 +0000 (15:55 +0000)]
Added LoggerAdapter class, changed copyright dates, made check for extra parameter passed to logging methods explicitly against None rather than a truth value.

17 years agoAdded section on passing contextual information to logging and documentation for...
Vinay Sajip [Fri, 18 Jan 2008 15:54:14 +0000 (15:54 +0000)]
Added section on passing contextual information to logging and documentation for the LoggerAdapter class.

17 years agoAdded win_add2path.py to Tools/scripts/
Christian Heimes [Fri, 18 Jan 2008 11:58:50 +0000 (11:58 +0000)]
Added win_add2path.py to Tools/scripts/
Added builddoc.bat to Doc/

17 years agoBuild _ctypes after the other extensions. Its build process depends
Christian Heimes [Fri, 18 Jan 2008 09:51:43 +0000 (09:51 +0000)]
Build _ctypes after the other extensions. Its build process depends
on the _weakref extension (and maybe other modules, too)

17 years agoCoverity CID #168
Christian Heimes [Fri, 18 Jan 2008 08:53:45 +0000 (08:53 +0000)]
Coverity CID #168
leaked_storage: Returned without freeing storage "fp"

17 years agoCoverity issue CID #169
Christian Heimes [Fri, 18 Jan 2008 08:47:59 +0000 (08:47 +0000)]
Coverity issue CID #169
local_ptr_assign_local: Assigning address of stack variable "namebuf" to pointer "filename"
out_of_scope: Variable "namebuf" goes out of scope
use_invalid: Used "filename" pointing to out-of-scope variable "namebuf"

17 years agoCoverity issue CID #182
Christian Heimes [Fri, 18 Jan 2008 08:04:57 +0000 (08:04 +0000)]
Coverity issue CID #182
size_error: Allocating 1 bytes to pointer "children", which needs at least 4 bytes

17 years agoCoverity issue CID #167
Christian Heimes [Fri, 18 Jan 2008 07:45:30 +0000 (07:45 +0000)]
Coverity issue CID #167
Event alloc_fn: Called allocation function "metacompile" [model]
Event var_assign: Assigned variable "gr" to storage returned from "metacompile"
gr = metacompile(n);
Event pass_arg: Variable "gr" not freed or pointed-to in function "maketables" [model]
g = maketables(gr);
   translatelabels(g);
   addfirstsets(g);
Event leaked_storage: Returned without freeing storage "gr"
return g;

17 years agoCoverity issue CID #197
Christian Heimes [Fri, 18 Jan 2008 07:30:20 +0000 (07:30 +0000)]
Coverity issue CID #197
var_decl: Declared variable "stm" without initializer
ninit_use_in_call: Using uninitialized value "stm" (field "stm".tm_zone uninitialized) in call to function "mktime"

17 years agoTypo fix
Andrew M. Kuchling [Fri, 18 Jan 2008 02:42:52 +0000 (02:42 +0000)]
Typo fix

17 years agoBump verson
Andrew M. Kuchling [Fri, 18 Jan 2008 02:26:16 +0000 (02:26 +0000)]
Bump verson

17 years agoclearcache() needs to remove the dict as well as clear it.
Raymond Hettinger [Fri, 18 Jan 2008 00:10:42 +0000 (00:10 +0000)]
clearcache() needs to remove the dict as well as clear it.

17 years agoFix markup
Raymond Hettinger [Thu, 17 Jan 2008 23:56:56 +0000 (23:56 +0000)]
Fix markup

17 years agoFix-up Timer() example.
Raymond Hettinger [Thu, 17 Jan 2008 23:32:01 +0000 (23:32 +0000)]
Fix-up Timer() example.

17 years agoUpdated new property syntax. An elaborate example for subclassing and the getter...
Christian Heimes [Thu, 17 Jan 2008 23:01:44 +0000 (23:01 +0000)]
Updated new property syntax. An elaborate example for subclassing and the getter was missing.
Added comment about VS 2008 and PGO builds.

17 years agoAdd advice on choosing between scheduler and threading.Timer().
Raymond Hettinger [Thu, 17 Jan 2008 22:27:49 +0000 (22:27 +0000)]
Add advice on choosing between scheduler and threading.Timer().

17 years agoCorrection from Jordan Lewis: halfdelay() uses tenths of a second, not milliseconds
Andrew M. Kuchling [Thu, 17 Jan 2008 19:49:24 +0000 (19:49 +0000)]
Correction from Jordan Lewis: halfdelay() uses tenths of a second, not milliseconds

17 years agoIssue #1861: Add read-only attribute listing upcoming events in the order they will...
Raymond Hettinger [Thu, 17 Jan 2008 19:31:38 +0000 (19:31 +0000)]
Issue #1861:  Add read-only attribute listing upcoming events in the order they will be run.

17 years agoFix a function pointer declaration to silence the compiler.
Brett Cannon [Thu, 17 Jan 2008 18:45:10 +0000 (18:45 +0000)]
Fix a function pointer declaration to silence the compiler.

17 years agoRevise 3141 section a bit; add some Windows items
Andrew M. Kuchling [Thu, 17 Jan 2008 12:00:15 +0000 (12:00 +0000)]
Revise 3141 section a bit; add some Windows items

17 years agoFixes (accepts patch) issue1339 - http://bugs.python.org/issue1339
Gregory P. Smith [Thu, 17 Jan 2008 08:35:49 +0000 (08:35 +0000)]
Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339
- Factor out the duplication of EHLO/HELO in login() and sendmail() to
  a new function, ehlo_or_helo_if_needed().
- Use ehlo_or_helo_if_needed() in starttls()
- Check for the starttls exception in starttls() in the same way as
  login() checks for the auth extension.
Contributed by Bill Fenner.

17 years agoNote versionadded.
Raymond Hettinger [Thu, 17 Jan 2008 08:07:05 +0000 (08:07 +0000)]
Note versionadded.

17 years agoentry for r60015
Gregory P. Smith [Thu, 17 Jan 2008 08:03:17 +0000 (08:03 +0000)]
entry for r60015

17 years agoComply with RFC 3207.
Gregory P. Smith [Thu, 17 Jan 2008 07:43:20 +0000 (07:43 +0000)]
Comply with RFC 3207.
Fixes issue 829951 - http://bugs.python.org/issue829951

17 years agoMake starmap() match its pure python definition and accept any itertable input (not...
Raymond Hettinger [Thu, 17 Jan 2008 03:02:14 +0000 (03:02 +0000)]
Make starmap() match its pure python definition and accept any itertable input (not just tuples).

17 years agoAdd news entry.
Raymond Hettinger [Wed, 16 Jan 2008 23:49:35 +0000 (23:49 +0000)]
Add news entry.

17 years agoAdd queues will alternative fetch orders (priority based and stack based).
Raymond Hettinger [Wed, 16 Jan 2008 23:40:45 +0000 (23:40 +0000)]
Add queues will alternative fetch orders (priority based and stack based).

17 years agoMinor wordsmithing.
Raymond Hettinger [Wed, 16 Jan 2008 23:38:16 +0000 (23:38 +0000)]
Minor wordsmithing.

17 years agoUse 'g' instead of 'D' as the ctypes typecode for c_longdouble, for
Thomas Heller [Wed, 16 Jan 2008 20:34:37 +0000 (20:34 +0000)]
Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, for
compliance with PEP 3118.

17 years agoDoc build should work with 2.4 now.
Georg Brandl [Wed, 16 Jan 2008 20:29:00 +0000 (20:29 +0000)]
Doc build should work with 2.4 now.

17 years agoAdd Python-specific content to Doc dir. Update configuration file
Georg Brandl [Wed, 16 Jan 2008 20:27:56 +0000 (20:27 +0000)]
Add Python-specific content to Doc dir. Update configuration file
to work with the newest Sphinx.

17 years agoRaise a TypeError instead of a ValueError when too many initializers
Thomas Heller [Wed, 16 Jan 2008 19:45:51 +0000 (19:45 +0000)]
Raise a TypeError instead of a ValueError when too many initializers
are used in a Structure or Union constructor.

17 years agoRaise a TypeError if conflicting positional and named arguments are
Thomas Heller [Wed, 16 Jan 2008 19:37:33 +0000 (19:37 +0000)]
Raise a TypeError if conflicting positional and named arguments are
passed to a Structure or Union constructor.

17 years agoConvert the internal ctypes array type cache to a WeakValueDict so
Thomas Heller [Wed, 16 Jan 2008 19:16:27 +0000 (19:16 +0000)]
Convert the internal ctypes array type cache to a WeakValueDict so
that array types do not live longer than needed.

17 years agoFix MSDN library URL. (#1854)
Georg Brandl [Wed, 16 Jan 2008 16:56:29 +0000 (16:56 +0000)]
Fix MSDN library URL. (#1854)

17 years agoMarkup fix
Andrew M. Kuchling [Wed, 16 Jan 2008 13:01:51 +0000 (13:01 +0000)]
Markup fix

17 years agoAdd PEP 3141 section
Andrew M. Kuchling [Wed, 16 Jan 2008 03:17:25 +0000 (03:17 +0000)]
Add PEP 3141 section

17 years agoDocstring typos
Andrew M. Kuchling [Wed, 16 Jan 2008 00:32:03 +0000 (00:32 +0000)]
Docstring typos

17 years agotest_doctest fails since r59984.
Amaury Forgeot d'Arc [Tue, 15 Jan 2008 21:25:11 +0000 (21:25 +0000)]
test_doctest fails since r59984.
Not sure if these are the correct values, but save_stdout has to be set before its usage...

17 years agoFix-up half-written paragraph in the docs
Raymond Hettinger [Tue, 15 Jan 2008 21:22:47 +0000 (21:22 +0000)]
Fix-up half-written paragraph in the docs

17 years agoRefactor if/elif chain for clarity and speed. Remove dependency on subclasses having...
Raymond Hettinger [Tue, 15 Jan 2008 20:52:42 +0000 (20:52 +0000)]
Refactor if/elif chain for clarity and speed.  Remove dependency on subclasses having to implement _empty and _full.

17 years agoIssue #1786 (by myself): pdb should use its own stdin/stdout around an
Guido van Rossum [Tue, 15 Jan 2008 17:59:29 +0000 (17:59 +0000)]
Issue #1786 (by myself): pdb should use its own stdin/stdout around an
exec call and when creating a recursive instance.

17 years agoRestore description of sys.dont_write_bytecode.
Andrew M. Kuchling [Tue, 15 Jan 2008 14:38:05 +0000 (14:38 +0000)]
Restore description of sys.dont_write_bytecode.

The duplication is intentional -- this paragraph is in a section
describing additions to the sys module, and there's a later section
that mentions the switch.  I think most people scan the what's-new and
don't read it in detail, so a bit of duplication is OK.

17 years agoAdd rational.Rational as an implementation of numbers.Rational with infinite
Jeffrey Yasskin [Tue, 15 Jan 2008 07:46:24 +0000 (07:46 +0000)]
Add rational.Rational as an implementation of numbers.Rational with infinite
precision. This has been discussed at http://bugs.python.org/issue1682. It's
useful primarily for teaching, but it also demonstrates how to implement a
member of the numeric tower, including fallbacks for mixed-mode arithmetic.

I expect to write a couple more patches in this area:
 * Rational.from_decimal()
 * Rational.trim/approximate() (maybe with different names)
 * Maybe remove the parentheses from Rational.__str__()
 * Maybe rename one of the Rational classes
 * Maybe make Rational('3/2') work.

17 years agoRemove duplicate entry.
Georg Brandl [Tue, 15 Jan 2008 06:58:15 +0000 (06:58 +0000)]
Remove duplicate entry.

17 years agoTypo.
Georg Brandl [Tue, 15 Jan 2008 06:55:56 +0000 (06:55 +0000)]
Typo.

17 years agoSmall grammar nit
Raymond Hettinger [Tue, 15 Jan 2008 05:46:43 +0000 (05:46 +0000)]
Small grammar nit

17 years agoTemporarily revert 59967 until GC can be added.
Raymond Hettinger [Tue, 15 Jan 2008 05:39:59 +0000 (05:39 +0000)]
Temporarily revert 59967 until GC can be added.

17 years agoBetter (?) text describing the lack of guarantees provided by qsize(),
Skip Montanaro [Tue, 15 Jan 2008 03:40:20 +0000 (03:40 +0000)]
Better (?) text describing the lack of guarantees provided by qsize(),
empty() and full().