]> granicus.if.org Git - python/log
python
16 years agoWording changes
Andrew M. Kuchling [Thu, 10 Jul 2008 14:43:31 +0000 (14:43 +0000)]
Wording changes

16 years agoIssue 3285: Fractions from_float() and from_decimal() accept Integral arguments.
Raymond Hettinger [Thu, 10 Jul 2008 14:34:57 +0000 (14:34 +0000)]
Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments.

16 years agoIssue 3301: Bisect functions behaved badly when lo was negative.
Raymond Hettinger [Thu, 10 Jul 2008 14:03:19 +0000 (14:03 +0000)]
Issue 3301:  Bisect functions behaved badly when lo was negative.

16 years agoFixed Issue3122 and extended sys.getsizeof tests for built-in types.
Robert Schuppenies [Thu, 10 Jul 2008 13:43:26 +0000 (13:43 +0000)]
Fixed Issue3122 and extended sys.getsizeof tests for built-in types.

16 years agoUse operator.index() instead of n.__index__().
Raymond Hettinger [Thu, 10 Jul 2008 10:28:41 +0000 (10:28 +0000)]
Use operator.index() instead of n.__index__().

16 years agoIssue 3287: Raise correct exception for float inputs.
Raymond Hettinger [Thu, 10 Jul 2008 09:31:08 +0000 (09:31 +0000)]
Issue 3287: Raise correct exception for float inputs.

16 years agoAdd missing NEWS and ACK entries for r64791
Nick Coghlan [Tue, 8 Jul 2008 14:21:42 +0000 (14:21 +0000)]
Add missing NEWS and ACK entries for r64791

16 years agoIssue 2517: Allow unicode messages in Exceptions again by correctly bypassing the...
Nick Coghlan [Tue, 8 Jul 2008 14:08:04 +0000 (14:08 +0000)]
Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing the instance dictionary when looking up __unicode__ on new-style classes

16 years agoAdd missing ABCs to list.
Georg Brandl [Tue, 8 Jul 2008 07:05:23 +0000 (07:05 +0000)]
Add missing ABCs to list.

16 years agoIssue 3306. Better control for a lenght in findmax() function.
Facundo Batista [Mon, 7 Jul 2008 17:02:59 +0000 (17:02 +0000)]
Issue 3306. Better control for a lenght in findmax() function.

16 years agoFix example to match text
Andrew M. Kuchling [Mon, 7 Jul 2008 16:51:09 +0000 (16:51 +0000)]
Fix example to match text

16 years agoCorrect grammar.
Skip Montanaro [Mon, 7 Jul 2008 11:16:14 +0000 (11:16 +0000)]
Correct grammar.

16 years ago- Issue #3094: httplib.HTTPSConnection Host: headers no longer include the
Gregory P. Smith [Mon, 7 Jul 2008 05:09:12 +0000 (05:09 +0000)]
- Issue #3094: httplib.HTTPSConnection Host: headers no longer include the
  redundant ":443" port number designation when the connection is using the
  default https port (443).

16 years agoAdd commented out #_sha256 and #_sha512 lines per issue 3183.
Gregory P. Smith [Mon, 7 Jul 2008 04:54:31 +0000 (04:54 +0000)]
Add commented out #_sha256 and #_sha512 lines per issue 3183.

16 years agoFixed bugs 760475, 953599, and 1519.
Josiah Carlson [Mon, 7 Jul 2008 04:51:46 +0000 (04:51 +0000)]
Fixed bugs 760475, 953599, and 1519.

16 years ago- Issue #3309: Fix bz2.BZFile itererator to release its internal lock
Gregory P. Smith [Mon, 7 Jul 2008 04:31:58 +0000 (04:31 +0000)]
- Issue #3309: Fix bz2.BZFile itererator to release its internal lock
  properly when raising an exception due to the bz2file being closed.
  Prevents a deadlock.

16 years agoIssue839496: SimpleHTTPServer should open all files in binary mode.
Amaury Forgeot d'Arc [Sun, 6 Jul 2008 21:34:39 +0000 (21:34 +0000)]
Issue839496: SimpleHTTPServer should open all files in binary mode.

Forward-port of 38255 (2005/01/15!)
This was already fixed in 2.4, but never merged into trunk...
py3k is already right, thanks to the bytes/str distinction!

Should be backported to 2.5.

16 years agoAdd two items; rewrap paragraph
Andrew M. Kuchling [Sun, 6 Jul 2008 17:44:17 +0000 (17:44 +0000)]
Add two items; rewrap paragraph

16 years agoWording fix
Andrew M. Kuchling [Sun, 6 Jul 2008 17:43:16 +0000 (17:43 +0000)]
Wording fix

16 years agoFix opensearch template.
Georg Brandl [Sun, 6 Jul 2008 17:36:20 +0000 (17:36 +0000)]
Fix opensearch template.

16 years agofix issue3304 - remove an incorrect PyMem_Free in fileio_init
Gregory P. Smith [Sun, 6 Jul 2008 17:06:29 +0000 (17:06 +0000)]
fix issue3304 - remove an incorrect PyMem_Free in fileio_init

16 years agoremove test_compact_freelists from test_sys
Benjamin Peterson [Sun, 6 Jul 2008 12:39:09 +0000 (12:39 +0000)]
remove test_compact_freelists from test_sys

16 years ago- Issue #2113: Fix error in subprocess.Popen if the select system call is
Gregory P. Smith [Sun, 6 Jul 2008 07:16:40 +0000 (07:16 +0000)]
- Issue #2113: Fix error in subprocess.Popen if the select system call is
  interrupted by a signal.

16 years ago- Issue #2862: Make int and float freelist management consistent with other
Gregory P. Smith [Sun, 6 Jul 2008 03:35:58 +0000 (03:35 +0000)]
- Issue #2862: Make int and float freelist management consistent with other
  freelists.  Changes their CompactFreeList apis into ClearFreeList apis and
  calls them via gc.collect().

16 years agoIssue #3239. Differentiate the ascii call from the curses one and
Facundo Batista [Sat, 5 Jul 2008 20:39:59 +0000 (20:39 +0000)]
Issue #3239. Differentiate the ascii call from the curses one and
the builtin one.

16 years agoIssue 3289. Removed two lines that ended doing nothing.
Facundo Batista [Sat, 5 Jul 2008 19:19:50 +0000 (19:19 +0000)]
Issue 3289.  Removed two lines that ended doing nothing.

16 years agoKeep below 80 chars.
Georg Brandl [Sat, 5 Jul 2008 16:43:45 +0000 (16:43 +0000)]
Keep below 80 chars.

16 years agomake regrtest aware of the lib2to3 resource
Benjamin Peterson [Sat, 5 Jul 2008 16:29:38 +0000 (16:29 +0000)]
make regrtest aware of the lib2to3 resource

16 years agoDisable lib2to3 by default, unless run explicitly.
Martin v. Löwis [Sat, 5 Jul 2008 15:48:20 +0000 (15:48 +0000)]
Disable lib2to3 by default, unless run explicitly.

16 years agoMerged revisions 64285-64735 via svnmerge from
Martin v. Löwis [Sat, 5 Jul 2008 15:45:45 +0000 (15:45 +0000)]
Merged revisions 64285-64735 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r64493 | benjamin.peterson | 2008-06-24 04:14:14 +0200 (Di, 24 Jun 2008) | 1 line

  add a fix_import mapping for cPickle -> pickle
........
  r64651 | brett.cannon | 2008-07-02 04:00:11 +0200 (Mi, 02 Jul 2008) | 3 lines

  Update fix_imports for urllib. Had to change the fixer itself to handle modules
  that are split across several renames in 3.0.
........
  r64669 | brett.cannon | 2008-07-02 21:43:48 +0200 (Mi, 02 Jul 2008) | 4 lines

  Backing out last change until fix_imports is working again. Also re-enable the
  testing for fix_imports; if it is deemed that it takes too long to run then a
  random sample should be taken and used to test it.
........

16 years agoMinor rewrite of cmath_log to work around a Sun compiler bug. See issue
Mark Dickinson [Sat, 5 Jul 2008 15:25:48 +0000 (15:25 +0000)]
Minor rewrite of cmath_log to work around a Sun compiler bug.  See issue
#3168.

16 years agoIssue 3188: accept float('infinity') as well as float('inf'). This
Mark Dickinson [Sat, 5 Jul 2008 11:33:52 +0000 (11:33 +0000)]
Issue 3188: accept float('infinity') as well as float('inf').  This
makes the float constructor behave in the same way as specified
by various other language standards, including C99, IEEE 754r,
and the IBM Decimal standard.

16 years ago#2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade.
Georg Brandl [Sat, 5 Jul 2008 10:13:36 +0000 (10:13 +0000)]
#2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade.

This is a new feature, but Barry authorized adding it in the beta period.

16 years agoFix tabs.
Georg Brandl [Sat, 5 Jul 2008 10:07:18 +0000 (10:07 +0000)]
Fix tabs.

16 years agoUpdate comment on prediction macros.
Raymond Hettinger [Sat, 5 Jul 2008 02:11:55 +0000 (02:11 +0000)]
Update comment on prediction macros.

16 years agoGive the pickle special methods a signature.
Georg Brandl [Fri, 4 Jul 2008 17:22:53 +0000 (17:22 +0000)]
Give the pickle special methods a signature.

16 years agolet the term be linked
Benjamin Peterson [Thu, 3 Jul 2008 13:01:17 +0000 (13:01 +0000)]
let the term be linked

16 years agolowercase glossary term
Benjamin Peterson [Thu, 3 Jul 2008 12:57:35 +0000 (12:57 +0000)]
lowercase glossary term

16 years agoPatch #1622: Correct interpretation of various ZIP header fields.
Martin v. Löwis [Thu, 3 Jul 2008 12:51:14 +0000 (12:51 +0000)]
Patch #1622: Correct interpretation of various ZIP header fields.

Also fixes
- Issue #1526: Allow more than 64k files to be added to Zip64 file.

- Issue #1746: Correct handling of zipfile archive comments (previously
  archives with comments over 4k were flagged as invalid). Allow writing
  Zip files with archives by setting the 'comment' attribute of a ZipFile.

16 years agoTweak wording
Andrew M. Kuchling [Thu, 3 Jul 2008 12:50:03 +0000 (12:50 +0000)]
Tweak wording

16 years agoTry a blind fix to nismodule which fails on the solaris10 3.0 buildbot:
Amaury Forgeot d'Arc [Wed, 2 Jul 2008 23:40:28 +0000 (23:40 +0000)]
Try a blind fix to nismodule which fails on the solaris10 3.0 buildbot:
the GIL must be re-acquired in the callback function

16 years agoRevert r64673 and instead just change the file encoding.
Brett Cannon [Wed, 2 Jul 2008 21:52:42 +0000 (21:52 +0000)]
Revert r64673 and instead just change the file encoding.

16 years agoFIx some Latin-1 characters to be UTF-8 as the file encoding specifies.
Brett Cannon [Wed, 2 Jul 2008 21:40:11 +0000 (21:40 +0000)]
FIx some Latin-1 characters to be UTF-8 as the file encoding specifies.

Closes issue #3261. THankjs Leo Soto for the bug report.

16 years agoAdd #!/usr/bin/env python for ben
Jesse Noller [Wed, 2 Jul 2008 16:56:51 +0000 (16:56 +0000)]
Add #!/usr/bin/env python for ben

16 years agoIssue #449227: Now with the rlcompleter module, callable objects are
Facundo Batista [Wed, 2 Jul 2008 16:52:55 +0000 (16:52 +0000)]
Issue #449227: Now with the rlcompleter module, callable objects are
added a '(' when completed.

16 years agoReenable the manager tests with Amaury's threading fix
Jesse Noller [Wed, 2 Jul 2008 16:44:09 +0000 (16:44 +0000)]
Reenable the manager tests with Amaury's threading fix

16 years agoIssue 3190: pydoc now hides module __package__ attributes
Nick Coghlan [Wed, 2 Jul 2008 13:09:19 +0000 (13:09 +0000)]
Issue 3190: pydoc now hides module __package__ attributes

16 years agoReplace occurrences of '\d' with '[0-9]' in Decimal regex, to make sure
Mark Dickinson [Wed, 2 Jul 2008 09:37:01 +0000 (09:37 +0000)]
Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sure
that the behaviour of Decimal doesn't change if/when re.UNICODE becomes
assumed in Python 3.0.

Also add a check that alternative Unicode digits (e.g. u'\N{FULLWIDTH
DIGIT ONE}') are *not* accepted in a numeric string.

16 years agoHandle urllib's renaming for Python 3.0:
Brett Cannon [Wed, 2 Jul 2008 01:57:08 +0000 (01:57 +0000)]
Handle urllib's renaming for Python 3.0:

* Deprecate urllib.urlopen() in favor of urllib2.urlopen() for 3.0.
* Update docs to mention split/rename of the module and deprecation of
  urlopen().

Changes to lib2to3 are in a separate commit. Work is for issue #2885.

16 years agoadd ABC to the glossary
Benjamin Peterson [Tue, 1 Jul 2008 23:33:06 +0000 (23:33 +0000)]
add ABC to the glossary

16 years agoAdd a comment about incref'ing w.
Georg Brandl [Tue, 1 Jul 2008 20:56:03 +0000 (20:56 +0000)]
Add a comment about incref'ing w.

16 years ago#1410739: add a footnote about "is" and "unusual" behavior.
Georg Brandl [Tue, 1 Jul 2008 20:50:02 +0000 (20:50 +0000)]
#1410739: add a footnote about "is" and "unusual" behavior.

16 years ago#1523853: add note about fread().
Georg Brandl [Tue, 1 Jul 2008 20:45:09 +0000 (20:45 +0000)]
#1523853: add note about fread().

16 years ago#3242: fix a crash in "print", if sys.stdout is set to a custom object,
Amaury Forgeot d'Arc [Tue, 1 Jul 2008 20:38:04 +0000 (20:38 +0000)]
#3242: fix a crash in "print", if sys.stdout is set to a custom object,
whose write() method installs another sys.stdout.

Will backport.

16 years ago#3216: fix Execute's parameter description.
Georg Brandl [Tue, 1 Jul 2008 20:18:10 +0000 (20:18 +0000)]
#3216: fix Execute's parameter description.

16 years agoAdd a link to PEP 324.
Georg Brandl [Tue, 1 Jul 2008 19:59:00 +0000 (19:59 +0000)]
Add a link to PEP 324.

16 years agowrite a short little section for multiprocessing; it still needs help
Benjamin Peterson [Tue, 1 Jul 2008 19:51:54 +0000 (19:51 +0000)]
write a short little section for multiprocessing; it still needs help

16 years ago#3219 repeated keyword arguments aren't allowed in function calls anymore
Benjamin Peterson [Tue, 1 Jul 2008 19:34:52 +0000 (19:34 +0000)]
#3219 repeated keyword arguments aren't allowed in function calls anymore

16 years ago#Issue3088 in-progress: Race condition with instances of classes derived from threadi...
Amaury Forgeot d'Arc [Mon, 30 Jun 2008 22:42:40 +0000 (22:42 +0000)]
#Issue3088 in-progress: Race condition with instances of classes derived from threading.local:

When a thread touches such an object for the first time, a new thread-local __dict__ is created,
and the __init__ method is run.
But a thread switch can occur here; if the other thread touches the same object, it installs another
__dict__; when the first thread resumes, it updates the dictionary of the second...

This is the deep cause of the failures in test_multiprocessing involving "managers" objects.

Also a 2.5 backport candidate.

16 years agoAdd _multiprocessing module.
Martin v. Löwis [Mon, 30 Jun 2008 07:01:09 +0000 (07:01 +0000)]
Add _multiprocessing module.

16 years agoIssue #3215: Build sqlite3 as sqlite3.dll, not sqlite3.pyd
Martin v. Löwis [Mon, 30 Jun 2008 06:57:39 +0000 (06:57 +0000)]
Issue #3215: Build sqlite3 as sqlite3.dll, not sqlite3.pyd

16 years agoFix #2702, with a correct accounting of recursion.
Facundo Batista [Mon, 30 Jun 2008 01:10:55 +0000 (01:10 +0000)]
Fix #2702, with a correct accounting of recursion.

16 years agoUpdated to reflect change in logging.config to remove out-of-date comment in _install...
Vinay Sajip [Sun, 29 Jun 2008 21:27:15 +0000 (21:27 +0000)]
Updated to reflect change in logging.config to remove out-of-date comment in _install_handlers and the use of issubclass in place of equality comparison of classes.

16 years agoRemoved out-of-date comment in _install_handlers and
Vinay Sajip [Sun, 29 Jun 2008 21:25:28 +0000 (21:25 +0000)]
Removed out-of-date comment in _install_handlers and
used issubclass in place of equality comparison of classes.

16 years agoreinstate the ending backtick. thanks Nick :)
Benjamin Peterson [Sun, 29 Jun 2008 13:43:07 +0000 (13:43 +0000)]
reinstate the ending backtick. thanks Nick :)

16 years agofix typo
Benjamin Peterson [Sat, 28 Jun 2008 23:35:31 +0000 (23:35 +0000)]
fix typo

16 years agorewrap
Benjamin Peterson [Sat, 28 Jun 2008 23:06:49 +0000 (23:06 +0000)]
rewrap

16 years agoconvert test_audioop to unittest. Thanks to Giampaolo Rodola.
Benjamin Peterson [Sat, 28 Jun 2008 23:06:05 +0000 (23:06 +0000)]
convert test_audioop to unittest. Thanks to Giampaolo Rodola.

16 years agomake sure we close the active channels when eof is received on them
Bill Janssen [Sat, 28 Jun 2008 23:00:39 +0000 (23:00 +0000)]
make sure we close the active channels when eof is received on them

16 years agovarious SSL fixes; issues 1251, 3162, 3212
Bill Janssen [Sat, 28 Jun 2008 22:19:33 +0000 (22:19 +0000)]
various SSL fixes; issues 1251, 3162, 3212

16 years agoIssue 3230: Do not the set specific size macro.
Raymond Hettinger [Sat, 28 Jun 2008 22:16:53 +0000 (22:16 +0000)]
Issue 3230:  Do not the set specific size macro.

16 years agofix typo
Benjamin Peterson [Sat, 28 Jun 2008 13:18:14 +0000 (13:18 +0000)]
fix typo

16 years agoGive information for compililation of _multiprocessing.SemLock on FreeBSD:
Hye-Shik Chang [Sat, 28 Jun 2008 01:04:31 +0000 (01:04 +0000)]
Give information for compililation of _multiprocessing.SemLock on FreeBSD:

FreeBSD's P1003.1b semaphore support is highly experimental and
it's disabled by default.  Even if a user loads the experimental
kernel module manually, _multiprocessing doesn't work correctly due
to several known incompatibilities around sem_unlink and sem_getvalue,
yet.

16 years agoedit multiprocessing docs
Benjamin Peterson [Fri, 27 Jun 2008 23:22:06 +0000 (23:22 +0000)]
edit multiprocessing docs

16 years agoFix typo in configure.in, and propagate configure.in changes from r64002
Mark Dickinson [Fri, 27 Jun 2008 22:20:14 +0000 (22:20 +0000)]
Fix typo in configure.in, and propagate configure.in changes from r64002
to configure and pyconfig.h.in.

16 years agoFix whitespace in example code.
Raymond Hettinger [Fri, 27 Jun 2008 21:34:24 +0000 (21:34 +0000)]
Fix whitespace in example code.

16 years agoIssue #3197: rework documentation for fractions module.
Mark Dickinson [Fri, 27 Jun 2008 16:49:27 +0000 (16:49 +0000)]
Issue #3197: rework documentation for fractions module.

16 years agoAdd Jean Brouwers for his work on math.sum
Mark Dickinson [Fri, 27 Jun 2008 11:03:21 +0000 (11:03 +0000)]
Add Jean Brouwers for his work on math.sum

16 years agoRemove trailing 'L's from numerator and denominator in the
Mark Dickinson [Fri, 27 Jun 2008 10:11:52 +0000 (10:11 +0000)]
Remove trailing 'L's from numerator and denominator in the
repr() of a Fraction instance.

16 years agoMerged revisions 64368-64369 via svnmerge from
Trent Nelson [Fri, 27 Jun 2008 02:30:34 +0000 (02:30 +0000)]
Merged revisions 64368-64369 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/tnelson-trunk-bsddb-47-upgrade

........
  r64368 | trent.nelson | 2008-06-17 23:13:44 -0500 (Tue, 17 Jun 2008) | 1 line

  Initial commit of work pertaining to switching the Windows build from Berkeley DB 4.4.20 to 4.7.25.  Note that I've deprecated the standalone '_bsddb44.vcproj' in lieu of adding the sources in a separate folder to the _bsddb project.  This was a conscious decision and actually makes everything far more easier to manage.  With this approach, entire test suite passed straight off the bat.  Well, almost -- the timeout in bsddb/test/test_replication.py needed bumping up a little -- 2 seconds was too short.  10 seconds seems to be fine for me, but I'll make sure Jesus verifies.  More documentation to come once I've been able to test out this approach on the buildbots (hence keeping the changes in a separate branch for now).
........
  r64369 | trent.nelson | 2008-06-17 23:19:12 -0500 (Tue, 17 Jun 2008) | 1 line

  Bump Berkeley DB version from 4.4.20 to 4.7.25.
........

16 years agoInitialized merge tracking via "svnmerge" with revisions "1-64347" from
Trent Nelson [Fri, 27 Jun 2008 02:24:49 +0000 (02:24 +0000)]
Initialized merge tracking via "svnmerge" with revisions "1-64347" from
svn+ssh://pythondev@svn.python.org/python/branches/tnelson-trunk-bsddb-47-upgrade

16 years agoIgnore .pyc and .pyo files.
Brett Cannon [Fri, 27 Jun 2008 00:32:16 +0000 (00:32 +0000)]
Ignore .pyc and .pyo files.

16 years agowarnings.warn_explicit() did not have the proper TypeErrors in place to prevent
Brett Cannon [Fri, 27 Jun 2008 00:31:13 +0000 (00:31 +0000)]
warnings.warn_explicit() did not have the proper TypeErrors in place to prevent
bus errors or SystemError being raised. As a side effect of fixing this, a bad
DECREF that could be triggered when 'message' and 'category' were both None was
fixed.

Closes issue 3211. Thanks JP Calderone for the bug report.

16 years agofix isSet in _exposed
Benjamin Peterson [Thu, 26 Jun 2008 21:29:19 +0000 (21:29 +0000)]
fix isSet in _exposed

16 years agouse the new API
Benjamin Peterson [Thu, 26 Jun 2008 21:24:35 +0000 (21:24 +0000)]
use the new API

16 years agoadd a htmlview directive
Benjamin Peterson [Thu, 26 Jun 2008 21:23:30 +0000 (21:23 +0000)]
add a htmlview directive

16 years agoUse newer versions of externals.
Georg Brandl [Thu, 26 Jun 2008 21:12:55 +0000 (21:12 +0000)]
Use newer versions of externals.

16 years agoAdd a version tag for shutdown().
Georg Brandl [Thu, 26 Jun 2008 18:55:37 +0000 (18:55 +0000)]
Add a version tag for shutdown().

16 years agoCorrected inconsistencies in sizeof tests and addressed issue pointed
Robert Schuppenies [Thu, 26 Jun 2008 15:20:35 +0000 (15:20 +0000)]
Corrected inconsistencies in sizeof tests and addressed issue pointed
out by Jean Brouwers.

16 years agoReverting the patch from #3165, as it broke other
Facundo Batista [Wed, 25 Jun 2008 19:24:53 +0000 (19:24 +0000)]
Reverting the patch from #3165, as it broke other
behaviours. I left the original test commented out (note
that that test came from #2702, which seems to have a
problem in FreeBSD and Windows, but not in Linux).

I included a new test, to watch over the now-broken
behaviour, I took it from #3179.

16 years agoissue #3199: Fix typo in Mac/Makefile.in
Mark Dickinson [Wed, 25 Jun 2008 15:29:32 +0000 (15:29 +0000)]
issue #3199: Fix typo in Mac/Makefile.in

16 years agoget rid of 2.6/3.0 switch statements in multiprocessing
Benjamin Peterson [Wed, 25 Jun 2008 12:44:29 +0000 (12:44 +0000)]
get rid of 2.6/3.0 switch statements in multiprocessing

16 years agouse byte literals in multiprocessing
Benjamin Peterson [Wed, 25 Jun 2008 12:39:05 +0000 (12:39 +0000)]
use byte literals in multiprocessing

16 years agoIssue 3147: Fixed SizeofTest failure for LLP64 systems.
Robert Schuppenies [Wed, 25 Jun 2008 09:20:03 +0000 (09:20 +0000)]
Issue 3147: Fixed SizeofTest failure for LLP64 systems.

16 years agoremove bytes alias in multiprocessing
Benjamin Peterson [Wed, 25 Jun 2008 03:09:05 +0000 (03:09 +0000)]
remove bytes alias in multiprocessing

16 years agoRevert 64424, 64438, and 64439.
Raymond Hettinger [Tue, 24 Jun 2008 22:46:07 +0000 (22:46 +0000)]
Revert 64424, 64438, and 64439.

16 years agoIssue 3189: Py3k DeprecationWarning in difflib
Raymond Hettinger [Tue, 24 Jun 2008 15:58:53 +0000 (15:58 +0000)]
Issue 3189:  Py3k DeprecationWarning in difflib

16 years agoRemove references to Py3k in __floor__, __ceil__ and __round__ documentation.
Mark Dickinson [Tue, 24 Jun 2008 15:35:14 +0000 (15:35 +0000)]
Remove references to Py3k in __floor__, __ceil__ and __round__ documentation.

16 years agoFixed formatting with thousands separator and padding. Resolves issue 3140.
Eric Smith [Tue, 24 Jun 2008 11:11:59 +0000 (11:11 +0000)]
Fixed formatting with thousands separator and padding.  Resolves issue 3140.

16 years agoChange description of float('nan') feature; NaNs don't care much about
Mark Dickinson [Tue, 24 Jun 2008 11:08:58 +0000 (11:08 +0000)]
Change description of float('nan') feature; NaNs don't care much about
signs, and float('nan'), float('+nan') and float('-nan') actually all
generate the exact same NaN value.