Commit Graph

1645 Commits

Author SHA1 Message Date
Raymond Hettinger 04361245af Update the PEP to reflect the most recent decisions about interactions
with binary floating point.  Also document the rationale for the decisions.
2004-06-30 03:37:13 +00:00
Michael W. Hudson c86e93c058 Clarify why we don't do hasattr(var, '__exit__). 2004-06-18 11:41:03 +00:00
Barry Warsaw 28e33e4c96 Describe what happens to $'s that don't fit the rule. 2004-06-16 19:31:35 +00:00
David Goodger cf742400b9 update from Facundo Batista 2004-06-16 14:27:00 +00:00
David Goodger d62b41a649 updated links; thanks to Felix Wiemann 2004-06-09 02:02:42 +00:00
Anthony Baxter 9b1e35dd64 un-deprecate audioop, as it's now being used (as discussed at pycon).
Note ast compiler status.
2004-06-02 14:48:16 +00:00
David Goodger 068a7f290b added PEP 330, Python Bytecode Verification, by Michel Pelletier 2004-05-28 01:45:34 +00:00
Anthony Baxter d8aca009a6 more rpm goodness 2004-05-27 05:55:55 +00:00
Andrew M. Kuchling e630e6ae05 Typo fix 2004-05-26 17:02:35 +00:00
Michael W. Hudson 2d39a47258 Remove an implemented request. 2004-05-26 16:17:39 +00:00
Michael W. Hudson 044bf4f1e7 Make this a little bit less hilariously out of date. 2004-05-26 16:10:30 +00:00
Fred Drake 8a4b71ba48 Features planned for 2.4 aren't being pushed off to 2.4. 2004-05-26 00:11:02 +00:00
Raymond Hettinger b8c832a6fa Clarify when the iter() is called. 2004-05-20 22:57:01 +00:00
Raymond Hettinger 18428862ff Various PEP updates mostly related to generator expressions. 2004-05-19 21:18:55 +00:00
Anthony Baxter 51d653d995 has it been _that_ many? sheesh 2004-05-13 12:00:45 +00:00
Anthony Baxter d87129bbf9 updates 2004-05-13 07:20:16 +00:00
Fred Drake 0c7783ed1a revise the test for universal newline support to work even if
sys.stdout has been replaced
(closes SF bug #800828)
2004-05-06 04:17:58 +00:00
Guido van Rossum 3c685c197c Add compatibility guideline for platform.py. 2004-05-06 00:29:47 +00:00
Raymond Hettinger bec290b671 Fix markup. 2004-05-04 08:24:05 +00:00
David Goodger edae0ba0b1 upadte from Aahz 2004-05-02 16:32:32 +00:00
David Goodger 081033c9a7 updated URL 2004-04-23 23:42:47 +00:00
David Goodger ef1e37dcf3 update; text from Edward Loper 2004-04-23 13:29:34 +00:00
Raymond Hettinger d8f2eaf03c Self reject PEP 329. 2004-04-20 17:51:11 +00:00
Raymond Hettinger 6c168af9b0 Adopt Jack Diederich's suggested module name. 2004-04-20 12:07:33 +00:00
Raymond Hettinger 5b706be0c0 * Protect the stoplist from mutation (suggested by JvR).
* Replace the comment on non-CPython implementations with working code.
  Should help those who could not comprehend the efforts that were made
  to support non-CPython environments automatically, with no performance
  penalty.
2004-04-20 11:01:35 +00:00
Raymond Hettinger a8b8df4485 Checkin pep for constant binding. 2004-04-19 04:07:59 +00:00
Skip Montanaro e675128566 Add Ping's enhanced singleton decorator. 2004-04-08 21:14:34 +00:00
Barry Warsaw 5d8316d6de a bit more rationale for absolute imports 2004-04-06 13:09:14 +00:00
David Goodger d5722e13e2 put emacs local variables stanza into a comment 2004-04-04 16:31:42 +00:00
David Goodger a8380d6616 conflict between alternative proposed syntax and reST markup; escaped with inline literals 2004-04-04 16:19:26 +00:00
Skip Montanaro f25aa6ef73 motivate the use of [...] instead of various alternatives. 2004-04-04 14:12:27 +00:00
David Goodger d9c3ed0cce updated 2004-04-04 02:39:23 +00:00
David Goodger f641712f63 update from Aahz 2004-04-04 02:37:57 +00:00
David Goodger 442424fdc9 Accepted by Gvr 2004-03-31 2004-04-04 02:37:34 +00:00
David Goodger af60734c54 update from Aahz 2004-04-03 15:02:46 +00:00
David Goodger 0a9b3b929c changes from Docutils project: reformatted docstring/help; send -h/--help output to stdout not stderr; enable exception tracebacks from Docutils; improved version checking 2004-04-02 19:20:13 +00:00
Skip Montanaro 298122a4e5 Add Guido's proposal and patch. 2004-04-01 13:44:35 +00:00
Skip Montanaro ad298dbac2 * tweak adding attributes example
* add open issue about changing func_name
2004-03-31 18:19:22 +00:00
David Goodger 8eb5243bfe updates from Facundo Batista, with edits 2004-03-31 16:24:00 +00:00
David Goodger c0bf347be9 fixed list containment (indents) & whitespace 2004-03-30 13:39:21 +00:00
Guido van Rossum 7a9247a8dc Insert blank line to remove ReST warning/2. 2004-03-30 03:48:59 +00:00
Kurt B. Kaiser 9c67b23e5a Clarifications resulting from further discussion with Barry Warsaw. 2004-03-30 01:12:22 +00:00
Barry Warsaw e13d881fb8 updated a link 2004-03-27 20:37:02 +00:00
Barry Warsaw bae8037025 A few more minor updates for the Naming Conventions section:
- recommend that all new libraries use the standards, but point out that
  internal consistency with existing standards is more important.

- Use b and B instead of x and X (it's hard to distinguish the case of X in
  some fonts)

- StudlyCaps is another name for CapWords

- Re-order list so Function Names are followed by Method Names.  Also, added a
  few blank lines in the Method Names section, and described how underscores
  should separate words for readability.

- Added that double leading underscore is usually only necessary to resolve
  name conflicts in subclasses.
2004-03-27 20:14:19 +00:00
Skip Montanaro c83ec2f982 Add verbiage about class decorators and their status 2004-03-25 21:45:58 +00:00
Barry Warsaw 490a2e2fdd Minor PEP 292 update. 2004-03-24 03:10:55 +00:00
Barry Warsaw fa6ff92955 Updated based on recent Pycon discussions, with a pointer to the SF patch
containing the reference implementation.
2004-03-24 03:08:02 +00:00
Skip Montanaro b2436faf3b Checking in what we have so far. Still digesting some of Jim Jewett's
inputs.
2004-03-23 16:41:17 +00:00
Andrew M. Kuchling efebd8e76c Update PEP 320 based on a meeting of python-dev'vers at PyCon. 2004-03-21 22:11:15 +00:00
Kurt B. Kaiser fef61c2a39 Patch 919256
Clarify and standardize the format for names of modules, functions,
methods, and instance variables.

Consistent, I hope, with discussion on python-dev

http://mail.python.org/pipermail/python-dev/2004-March/043257.html

http://mail.python.org/pipermail/python-dev/2004-March/043259.html
2004-03-20 06:42:29 +00:00