]> granicus.if.org Git - python/log
python
16 years agouse stack macros
Benjamin Peterson [Sun, 28 Jun 2009 16:14:07 +0000 (16:14 +0000)]
use stack macros

16 years agoadd two generic macros for peeking and setting in the stack
Benjamin Peterson [Sun, 28 Jun 2009 16:08:02 +0000 (16:08 +0000)]
add two generic macros for peeking and setting in the stack

16 years agoFix types in logic to compute help file name.
Martin v. Löwis [Sun, 28 Jun 2009 12:24:23 +0000 (12:24 +0000)]
Fix types in logic to compute help file name.

16 years agoRemove stray pychecker directive.
Georg Brandl [Sun, 28 Jun 2009 12:10:18 +0000 (12:10 +0000)]
Remove stray pychecker directive.

16 years agoIssue #4856: Remove checks for win NT.
Hirokazu Yamamoto [Sun, 28 Jun 2009 10:23:00 +0000 (10:23 +0000)]
Issue #4856: Remove checks for win NT.

16 years agoIssue 5390: Add uninstall icon independent of whether file
Martin v. Löwis [Sun, 28 Jun 2009 09:32:39 +0000 (09:32 +0000)]
Issue 5390: Add uninstall icon independent of whether file
extensions are installed.

16 years agoFixed a wrong apostrophe
Ezio Melotti [Sun, 28 Jun 2009 00:07:45 +0000 (00:07 +0000)]
Fixed a wrong apostrophe

16 years agostmt and setup can contain multiple statements, see #5896
Ezio Melotti [Sat, 27 Jun 2009 23:45:39 +0000 (23:45 +0000)]
stmt and setup can contain multiple statements, see #5896

16 years agolink to extensive generator docs in the reference manual
Benjamin Peterson [Sat, 27 Jun 2009 14:16:23 +0000 (14:16 +0000)]
link to extensive generator docs in the reference manual

16 years agodocument is_declared_global()
Benjamin Peterson [Fri, 26 Jun 2009 23:37:06 +0000 (23:37 +0000)]
document is_declared_global()

16 years agomark 3.1 as stable docs
Benjamin Peterson [Fri, 26 Jun 2009 16:49:06 +0000 (16:49 +0000)]
mark 3.1 as stable docs

16 years agoFixes the last problem mentioned in issue1202.
Gregory P. Smith [Fri, 26 Jun 2009 07:50:21 +0000 (07:50 +0000)]
Fixes the last problem mentioned in issue1202.

16 years ago#2016 Fix a crash in function call when the **kwargs dictionary is mutated
Amaury Forgeot d'Arc [Thu, 25 Jun 2009 22:29:29 +0000 (22:29 +0000)]
#2016 Fix a crash in function call when the **kwargs dictionary is mutated
during the function call setup.

This even gives a slight speedup, probably because tuple allocation
is faster than PyMem_NEW.

16 years agoFix a compilation warning on Windows
Amaury Forgeot d'Arc [Thu, 25 Jun 2009 21:29:32 +0000 (21:29 +0000)]
Fix a compilation warning on Windows

16 years agoIssue 6340: update by Gregor Lingl of his tdemo_chaos demo program.
R. David Murray [Thu, 25 Jun 2009 17:29:39 +0000 (17:29 +0000)]
Issue 6340: update by Gregor Lingl of his tdemo_chaos demo program.
Functionally equivalent, clearer code, English comments.

16 years agoAdd a couple of missing function alias declarations to the turtle docs.
R. David Murray [Thu, 25 Jun 2009 14:21:06 +0000 (14:21 +0000)]
Add a couple of missing function alias declarations to the turtle docs.

16 years agohttp://bugs.python.org/issue6192
Kristján Valur Jónsson [Wed, 24 Jun 2009 09:17:04 +0000 (09:17 +0000)]
http://bugs.python.org/issue6192
Move the newly introduced disable_nagle_algorithm flag into the StreamRequestHandler, where it is more appropriate.

16 years ago#6332: fix word dupes throughout the source.
Georg Brandl [Wed, 24 Jun 2009 06:41:19 +0000 (06:41 +0000)]
#6332: fix word dupes throughout the source.

16 years agoAdd procedural note.
Raymond Hettinger [Tue, 23 Jun 2009 22:20:04 +0000 (22:20 +0000)]
Add procedural note.

16 years agoRemove last remnants of the ipaddr package.
Amaury Forgeot d'Arc [Tue, 23 Jun 2009 21:53:46 +0000 (21:53 +0000)]
Remove last remnants of the ipaddr package.
The changes in mcast.py come from the first version of the patch for issue5379.

16 years agoIssue 6305: Clarify error message for large arguments to itertools.islice().
Raymond Hettinger [Tue, 23 Jun 2009 21:32:28 +0000 (21:32 +0000)]
Issue 6305: Clarify error message for large arguments to itertools.islice().

16 years agoRemove the ipaddr module per discussion on python-dev
Amaury Forgeot d'Arc [Tue, 23 Jun 2009 21:09:09 +0000 (21:09 +0000)]
Remove the ipaddr module per discussion on python-dev

16 years agoIssue 6329: Fix iteration for memoryviews.
Raymond Hettinger [Tue, 23 Jun 2009 20:59:43 +0000 (20:59 +0000)]
Issue 6329: Fix iteration for memoryviews.

16 years agoFix issue 5230 by having pydoc's safeimport check to see if the import
R. David Murray [Tue, 23 Jun 2009 18:02:46 +0000 (18:02 +0000)]
Fix issue 5230 by having pydoc's safeimport check to see if the import
error was thrown from itself in order to decide if the module can't be
found.  Thanks to Lucas Prado Melo for collaborating on the fix and tests.

16 years agoRemove markup from docstring
Nick Coghlan [Tue, 23 Jun 2009 10:51:02 +0000 (10:51 +0000)]
Remove markup from docstring

16 years agoIssue 6288: Update contextlib.nested() docstring to reflect new documentation
Nick Coghlan [Tue, 23 Jun 2009 10:19:30 +0000 (10:19 +0000)]
Issue 6288: Update contextlib.nested() docstring to reflect new documentation

16 years agoremove some unused symtable constants
Benjamin Peterson [Tue, 23 Jun 2009 03:01:56 +0000 (03:01 +0000)]
remove some unused symtable constants

16 years agofix grammar
Benjamin Peterson [Tue, 23 Jun 2009 01:18:57 +0000 (01:18 +0000)]
fix grammar

16 years agoImprove English phrasing.
R. David Murray [Mon, 22 Jun 2009 22:11:04 +0000 (22:11 +0000)]
Improve English phrasing.

16 years ago#4490 Fix sample code run by "python -m xml.sax.xmlreader"
Amaury Forgeot d'Arc [Mon, 22 Jun 2009 19:33:48 +0000 (19:33 +0000)]
#4490 Fix sample code run by "python -m xml.sax.xmlreader"

16 years agoremove tmpname support since it's no longer used
Benjamin Peterson [Sun, 21 Jun 2009 23:03:36 +0000 (23:03 +0000)]
remove tmpname support since it's no longer used

16 years agodon't need to add the name 'lambda' as assigned
Benjamin Peterson [Sun, 21 Jun 2009 23:01:07 +0000 (23:01 +0000)]
don't need to add the name 'lambda' as assigned

16 years agoFix memory bug in bdist_msi. (Commit okayed in issue6319.)
Steven Bethard [Sun, 21 Jun 2009 21:03:41 +0000 (21:03 +0000)]
Fix memory bug in bdist_msi. (Commit okayed in issue6319.)

16 years agoIssue #6314: logging.basicConfig() performs extra checks on the "level" argument.
Vinay Sajip [Sun, 21 Jun 2009 17:37:27 +0000 (17:37 +0000)]
Issue #6314: logging.basicConfig() performs extra checks on the "level" argument.

16 years agoIssue #5450: Moved tests involving loading tk from Lib/test/test_tcl to
Guilherme Polo [Sun, 21 Jun 2009 17:22:50 +0000 (17:22 +0000)]
Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl to
Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of
test_ttkguionly.

16 years agoFixed #6164 AIX specific linker argument in Distutils unixcompiler
Tarek Ziadé [Sat, 20 Jun 2009 13:57:20 +0000 (13:57 +0000)]
Fixed #6164 AIX specific linker argument in Distutils unixcompiler

16 years agouse closures
Benjamin Peterson [Fri, 19 Jun 2009 22:21:12 +0000 (22:21 +0000)]
use closures

16 years agoshow that this one isn't used
Benjamin Peterson [Fri, 19 Jun 2009 22:16:28 +0000 (22:16 +0000)]
show that this one isn't used

16 years agoadd missing assertion #6313
Benjamin Peterson [Fri, 19 Jun 2009 22:09:17 +0000 (22:09 +0000)]
add missing assertion #6313

16 years agoremove duplicate test
Benjamin Peterson [Fri, 19 Jun 2009 22:07:47 +0000 (22:07 +0000)]
remove duplicate test

16 years agoIssue #6274. Fixed a potential FD leak in subprocess.py.
Facundo Batista [Fri, 19 Jun 2009 18:02:28 +0000 (18:02 +0000)]
Issue #6274. Fixed a potential FD leak in subprocess.py.

16 years ago#6189: The subprocess.py module should be kept compatible with python 2.2
Amaury Forgeot d'Arc [Thu, 18 Jun 2009 22:32:50 +0000 (22:32 +0000)]
#6189: The subprocess.py module should be kept compatible with python 2.2

(On windows, you still have to change one line to use pywin32
instead of the _subprocess helper module)

16 years ago#6276: Remove usage of nested() in favor of new with statement with multiple managers.
Georg Brandl [Thu, 18 Jun 2009 22:24:26 +0000 (22:24 +0000)]
#6276: Remove usage of nested() in favor of new with statement with multiple managers.

16 years agoIssue 6288: update the contextlib.nested() docs to explain why it has been deprecated...
Nick Coghlan [Wed, 17 Jun 2009 12:12:15 +0000 (12:12 +0000)]
Issue 6288: update the contextlib.nested() docs to explain why it has been deprecated and should generally be avoided

16 years ago#6255: document PyInt_FromSize_t.
Georg Brandl [Wed, 17 Jun 2009 09:43:31 +0000 (09:43 +0000)]
#6255: document PyInt_FromSize_t.

16 years ago#6295: clarify blocking behavior of getch().
Georg Brandl [Wed, 17 Jun 2009 09:36:21 +0000 (09:36 +0000)]
#6295: clarify blocking behavior of getch().

16 years agoIssue #6215: Fixed to use self.open() instead of open() or io.open().
Hirokazu Yamamoto [Wed, 17 Jun 2009 07:05:33 +0000 (07:05 +0000)]
Issue #6215: Fixed to use self.open() instead of open() or io.open().

16 years agoremove unused 'encoding' member from the compiler struct
Benjamin Peterson [Wed, 17 Jun 2009 03:23:04 +0000 (03:23 +0000)]
remove unused 'encoding' member from the compiler struct

16 years agoAdd usage note.
Raymond Hettinger [Wed, 17 Jun 2009 01:43:47 +0000 (01:43 +0000)]
Add usage note.

16 years agoadd underscores
Benjamin Peterson [Tue, 16 Jun 2009 23:13:09 +0000 (23:13 +0000)]
add underscores

16 years agoAcknowledge the role of the MPFR library in creating cmath_testcases.txt
Mark Dickinson [Tue, 16 Jun 2009 20:31:12 +0000 (20:31 +0000)]
Acknowledge the role of the MPFR library in creating cmath_testcases.txt

16 years agoRemove unused macro.
Georg Brandl [Tue, 16 Jun 2009 17:43:44 +0000 (17:43 +0000)]
Remove unused macro.

16 years agoAdd tabularcolumns directive for tables with bullet lists in them.
Georg Brandl [Tue, 16 Jun 2009 17:41:33 +0000 (17:41 +0000)]
Add tabularcolumns directive for tables with bullet lists in them.

16 years agostarting distutils.ccompiler test coverage and cleanup
Tarek Ziadé [Tue, 16 Jun 2009 08:31:01 +0000 (08:31 +0000)]
starting distutils.ccompiler test coverage and cleanup

16 years agoFixed #6287: documentation for the license field in distutils
Tarek Ziadé [Tue, 16 Jun 2009 07:29:52 +0000 (07:29 +0000)]
Fixed #6287: documentation for the license field in distutils

16 years agodon't mask encoding errors when decoding a string #6289
Benjamin Peterson [Tue, 16 Jun 2009 00:29:31 +0000 (00:29 +0000)]
don't mask encoding errors when decoding a string #6289

16 years agoIssue #6286: distutils upload command now uses urllib2
Tarek Ziadé [Mon, 15 Jun 2009 23:30:13 +0000 (23:30 +0000)]
Issue #6286: distutils upload command now uses urllib2

16 years agocode cleanup
Tarek Ziadé [Mon, 15 Jun 2009 23:04:29 +0000 (23:04 +0000)]
code cleanup

16 years agobackport r73430
Benjamin Peterson [Sun, 14 Jun 2009 22:36:48 +0000 (22:36 +0000)]
backport r73430

16 years ago#6227: Because of a wrong indentation, the test was not testing what it should.
Amaury Forgeot d'Arc [Sun, 14 Jun 2009 21:20:40 +0000 (21:20 +0000)]
#6227: Because of a wrong indentation, the test was not testing what it should.
Ensure that the snippet in doctest_aliases actually contains aliases.

16 years agoIssue #6271: mmap tried to close invalid file handle (-1) when annonymous.
Hirokazu Yamamoto [Sun, 14 Jun 2009 03:53:55 +0000 (03:53 +0000)]
Issue #6271: mmap tried to close invalid file handle (-1) when annonymous.
(On Unix) Patch by STINNER Victor.

16 years agoUpdated MSVC files to follow r73394.
Hirokazu Yamamoto [Sun, 14 Jun 2009 03:05:54 +0000 (03:05 +0000)]
Updated MSVC files to follow r73394.

16 years agoupdate ast version
Benjamin Peterson [Sat, 13 Jun 2009 20:30:48 +0000 (20:30 +0000)]
update ast version

16 years agowhen no module is given in a 'from' relative import, make ImportFrom.module NULL
Benjamin Peterson [Sat, 13 Jun 2009 20:23:33 +0000 (20:23 +0000)]
when no module is given in a 'from' relative import, make ImportFrom.module NULL

16 years agogive a better error message when deleting ()
Benjamin Peterson [Sat, 13 Jun 2009 17:08:53 +0000 (17:08 +0000)]
give a better error message when deleting ()

16 years agoset Print.values to NULL if there are no values
Benjamin Peterson [Sat, 13 Jun 2009 16:19:19 +0000 (16:19 +0000)]
set Print.values to NULL if there are no values

16 years agohandle different rc format
Benjamin Peterson [Sat, 13 Jun 2009 15:48:04 +0000 (15:48 +0000)]
handle different rc format

16 years agospecial case release candidates
Benjamin Peterson [Sat, 13 Jun 2009 15:42:23 +0000 (15:42 +0000)]
special case release candidates

16 years agouse 'rc' for release candidates for consistency
Benjamin Peterson [Sat, 13 Jun 2009 14:25:08 +0000 (14:25 +0000)]
use 'rc' for release candidates for consistency

16 years agoallow importing from a module named None if it has an 'as' clause
Benjamin Peterson [Sat, 13 Jun 2009 13:06:21 +0000 (13:06 +0000)]
allow importing from a module named None if it has an 'as' clause

16 years agoprevent import statements from assigning to None
Benjamin Peterson [Sat, 13 Jun 2009 03:46:30 +0000 (03:46 +0000)]
prevent import statements from assigning to None

16 years agokeep the slice.step field as NULL if no step expression is given
Benjamin Peterson [Sat, 13 Jun 2009 01:40:00 +0000 (01:40 +0000)]
keep the slice.step field as NULL if no step expression is given

16 years agoRevert r73401 per Raymond Hettinger's request.
Alexandre Vassalotti [Fri, 12 Jun 2009 23:03:35 +0000 (23:03 +0000)]
Revert r73401 per Raymond Hettinger's request.

The rational is the change might cause imcompatiblity problems with
PyYAML. In addition, Raymond wants to kept the different versions of
collections synchronized across Python versions.

16 years agoMake pickling of OrderedDict instances more efficient.
Alexandre Vassalotti [Fri, 12 Jun 2009 21:52:14 +0000 (21:52 +0000)]
Make pickling of OrderedDict instances more efficient.

16 years agoDelete outdated make file for building the parser with MSVC 6.
Alexandre Vassalotti [Fri, 12 Jun 2009 21:43:47 +0000 (21:43 +0000)]
Delete outdated make file for building the parser with MSVC 6.

16 years agoAdd const qualifier to PyErr_SetFromErrnoWithFilename and to
Alexandre Vassalotti [Fri, 12 Jun 2009 20:57:12 +0000 (20:57 +0000)]
Add const qualifier to PyErr_SetFromErrnoWithFilename and to
PyErr_SetFromErrnoWithUnicodeFilename.

16 years agoRe-enable testing of builtin open() in test_bufio in test_largefile
Antoine Pitrou [Fri, 12 Jun 2009 20:54:21 +0000 (20:54 +0000)]
Re-enable testing of builtin open() in test_bufio in test_largefile

16 years agoTry to restore the old test_file and test_univnewlines as new, different files
Antoine Pitrou [Fri, 12 Jun 2009 20:41:52 +0000 (20:41 +0000)]
Try to restore the old test_file and test_univnewlines as new, different files
(with the right revisions this time, hopefully)

16 years agoRestore the old test_file.py (for the builtin file object) as a new file named test_f...
Antoine Pitrou [Fri, 12 Jun 2009 20:36:25 +0000 (20:36 +0000)]
Restore the old test_file.py (for the builtin file object) as a new file named test_file2k.py

16 years agoIssue #6215: backport the 3.1 io lib
Antoine Pitrou [Fri, 12 Jun 2009 20:14:08 +0000 (20:14 +0000)]
Issue #6215: backport the 3.1 io lib

16 years agoClear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini.
Alexandre Vassalotti [Fri, 12 Jun 2009 18:56:57 +0000 (18:56 +0000)]
Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini.

16 years agoSupport AMD64 in msilib. Set Win64 on reglocator.
Martin v. Löwis [Fri, 12 Jun 2009 17:28:31 +0000 (17:28 +0000)]
Support AMD64 in msilib. Set Win64 on reglocator.
Fixes #6258.

16 years agoIssue 6261: Clarify behavior of random.uniform().
Raymond Hettinger [Thu, 11 Jun 2009 23:14:53 +0000 (23:14 +0000)]
Issue 6261: Clarify behavior of random.uniform().

16 years agoremove check for case handled in sub-function
Benjamin Peterson [Thu, 11 Jun 2009 22:29:23 +0000 (22:29 +0000)]
remove check for case handled in sub-function

16 years agoMove comment to correct line.
Raymond Hettinger [Thu, 11 Jun 2009 22:08:10 +0000 (22:08 +0000)]
Move comment to correct line.

16 years agoMerged revisions 72523,72950-72951,72994,73003,73033,73036-73040,73091-73093,73096...
Benjamin Peterson [Thu, 11 Jun 2009 22:06:46 +0000 (22:06 +0000)]
Merged revisions 72523,72950-72951,72994,73003,73033,73036-73040,73091-73093,73096,73179-73181,73192,73231,73244,73255-73256,73365 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r72523 | benjamin.peterson | 2009-05-09 14:42:26 -0500 (Sat, 09 May 2009) | 1 line

  remove parenthesis
........
  r72950 | benjamin.peterson | 2009-05-26 18:19:45 -0500 (Tue, 26 May 2009) | 1 line

  remove unused imports
........
  r72951 | benjamin.peterson | 2009-05-26 18:27:00 -0500 (Tue, 26 May 2009) | 1 line

  this is no longer executable
........
  r72994 | benjamin.peterson | 2009-05-28 15:32:54 -0500 (Thu, 28 May 2009) | 1 line

  fix test_all_fixers on Windows #6134
........
  r73003 | benjamin.peterson | 2009-05-28 21:57:28 -0500 (Thu, 28 May 2009) | 4 lines

  make 2to3 test utilities easier to use with other applications (3to2)

  Patch by Joe Amenta
........
  r73033 | benjamin.peterson | 2009-05-29 16:58:32 -0500 (Fri, 29 May 2009) | 1 line

  update grammar for multi with statement
........
  r73036 | benjamin.peterson | 2009-05-29 17:33:20 -0500 (Fri, 29 May 2009) | 1 line

  simplify fix_unicode
........
  r73037 | benjamin.peterson | 2009-05-29 17:53:03 -0500 (Fri, 29 May 2009) | 1 line

  add custom error for pattern syntax errors
........
  r73038 | benjamin.peterson | 2009-05-29 17:55:00 -0500 (Fri, 29 May 2009) | 1 line

  complain if details are attached to a token
........
  r73039 | benjamin.peterson | 2009-05-29 18:00:28 -0500 (Fri, 29 May 2009) | 1 line

  add a test for whitespace
........
  r73040 | benjamin.peterson | 2009-05-29 18:01:17 -0500 (Fri, 29 May 2009) | 1 line

  a fix for emacs highlighting
........
  r73091 | benjamin.peterson | 2009-05-31 20:55:25 -0500 (Sun, 31 May 2009) | 1 line

  deprecate set_prefix() and get_prefix() in favor of a prefix property
........
  r73092 | benjamin.peterson | 2009-05-31 21:00:51 -0500 (Sun, 31 May 2009) | 1 line

  change hideous java naming scheme
........
  r73093 | benjamin.peterson | 2009-05-31 21:01:39 -0500 (Sun, 31 May 2009) | 1 line

  remove dated comment
........
  r73096 | benjamin.peterson | 2009-05-31 21:40:53 -0500 (Sun, 31 May 2009) | 1 line

  group tests
........
  r73179 | benjamin.peterson | 2009-06-03 13:09:53 -0500 (Wed, 03 Jun 2009) | 1 line

  handle the case where there's multiple trailers #6185
........
  r73180 | benjamin.peterson | 2009-06-03 13:18:05 -0500 (Wed, 03 Jun 2009) | 1 line

  scrap __main__ section
........
  r73181 | benjamin.peterson | 2009-06-03 13:24:48 -0500 (Wed, 03 Jun 2009) | 1 line

  remove shebang lines and __main__ sections
........
  r73192 | benjamin.peterson | 2009-06-03 19:16:30 -0500 (Wed, 03 Jun 2009) | 4 lines

  actually test something here

  Thanks to Joe Amenta for noticing.y
........
  r73231 | benjamin.peterson | 2009-06-04 13:38:50 -0500 (Thu, 04 Jun 2009) | 1 line

  remove unused variable
........
  r73244 | benjamin.peterson | 2009-06-05 08:39:25 -0500 (Fri, 05 Jun 2009) | 1 line

  allow fixers to give different options in setUp
........
  r73255 | benjamin.peterson | 2009-06-06 11:23:46 -0500 (Sat, 06 Jun 2009) | 1 line

  fix the except fixer on one line suites #6222
........
  r73256 | benjamin.peterson | 2009-06-06 11:27:40 -0500 (Sat, 06 Jun 2009) | 1 line

  test one-line else and finally clauses
........
  r73365 | benjamin.peterson | 2009-06-11 17:01:32 -0500 (Thu, 11 Jun 2009) | 1 line

  normalize whitespace
........

16 years agoAdd example of how to do key lookups with bisect().
Raymond Hettinger [Thu, 11 Jun 2009 22:04:00 +0000 (22:04 +0000)]
Add example of how to do key lookups with bisect().

16 years agouse multi-with syntax
Benjamin Peterson [Thu, 11 Jun 2009 17:51:17 +0000 (17:51 +0000)]
use multi-with syntax

16 years agorevert r73361
Benjamin Peterson [Thu, 11 Jun 2009 17:49:38 +0000 (17:49 +0000)]
revert r73361

16 years agoremove duplicate check
Benjamin Peterson [Thu, 11 Jun 2009 16:25:52 +0000 (16:25 +0000)]
remove duplicate check

16 years agopep8-fied cygwinccompiler module
Tarek Ziadé [Thu, 11 Jun 2009 09:55:09 +0000 (09:55 +0000)]
pep8-fied cygwinccompiler module

16 years agoIssue #5262: Improved fix.
Vinay Sajip [Thu, 11 Jun 2009 09:53:35 +0000 (09:53 +0000)]
Issue #5262: Improved fix.

16 years agoIssue #5262: Fixed bug in next roll over time computation in TimedRotatingFileHandler.
Vinay Sajip [Thu, 11 Jun 2009 09:23:41 +0000 (09:23 +0000)]
Issue #5262: Fixed bug in next roll over time computation in TimedRotatingFileHandler.

16 years ago#6263 fixed syntax error in distutils.cygwinccompiler
Tarek Ziadé [Thu, 11 Jun 2009 09:13:36 +0000 (09:13 +0000)]
#6263 fixed syntax error in distutils.cygwinccompiler

16 years agoremoved the last string.split() call
Tarek Ziadé [Thu, 11 Jun 2009 08:43:26 +0000 (08:43 +0000)]
removed the last string.split() call

16 years agoFixed #5201: now distutils.sysconfig.parse_makefile() understands '53264' in Makefiles
Tarek Ziadé [Thu, 11 Jun 2009 08:12:20 +0000 (08:12 +0000)]
Fixed #5201: now distutils.sysconfig.parse_makefile() understands '53264' in Makefiles

16 years agoFix a typo spotted by Nick Coghlan.
Amaury Forgeot d'Arc [Wed, 10 Jun 2009 20:30:19 +0000 (20:30 +0000)]
Fix a typo spotted by Nick Coghlan.

16 years agoDistutils: started code cleanup and test coverage for cygwinccompiler
Tarek Ziadé [Wed, 10 Jun 2009 18:49:50 +0000 (18:49 +0000)]
Distutils: started code cleanup and test coverage for cygwinccompiler

16 years agoFix signed/unsigned compiler warning.
Raymond Hettinger [Wed, 10 Jun 2009 16:15:40 +0000 (16:15 +0000)]
Fix signed/unsigned compiler warning.

16 years agoIssue 6256: Fix stacklevel in warning message.
Raymond Hettinger [Wed, 10 Jun 2009 16:15:02 +0000 (16:15 +0000)]
Issue 6256: Fix stacklevel in warning message.