Victor Stinner
b531bfba4e
Blocked revisions 77840,77894,78871,78873 via svnmerge
...
................
r77840 | victor.stinner | 2010-01-30 03:30:00 +0100 (sam., 30 janv. 2010) | 10 lines
Blocked revisions 77836 via svnmerge
........
r77836 | victor.stinner | 2010-01-30 03:00:26 +0100 (sam., 30 janv. 2010) | 2 lines
#7801 : fix xmlrpclib binary example, open the picture in binary mode
........
I wrote a different patch for the py3k (r77838).
................
r77894 | victor.stinner | 2010-01-31 23:34:52 +0100 (dim., 31 janv. 2010) | 10 lines
Blocked revisions 77892 via svnmerge
........
r77892 | victor.stinner | 2010-01-31 23:32:15 +0100 (dim., 31 janv. 2010) | 4 lines
Issue #7819 : Check sys.call_tracing() arguments types.
py3k was already patched by issue #3661 .
........
................
r78871 | victor.stinner | 2010-03-12 15:31:06 +0100 (ven., 12 mars 2010) | 8 lines
Blocked revisions 78870 via svnmerge
........
r78870 | victor.stinner | 2010-03-12 15:30:26 +0100 (ven., 12 mars 2010) | 1 line
NEWS: issue #7774 is related to Library (sys), not Core and Builtins
........
................
r78873 | victor.stinner | 2010-03-12 15:47:28 +0100 (ven., 12 mars 2010) | 10 lines
Blocked revisions 78827 via svnmerge
........
r78827 | victor.stinner | 2010-03-10 23:45:04 +0100 (mer., 10 mars 2010) | 4 lines
ooops, fix error message in execusercustomize()
Copy/paste failure :-)
........
................
2010-03-21 21:44:31 +00:00
Victor Stinner
7f045cfba3
Merged revisions 78876 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78876 | victor.stinner | 2010-03-12 18:17:58 +0100 (ven., 12 mars 2010) | 3 lines
Issue #6697 : catch _PyUnicode_AsString() errors in getattr() and setattr()
builtin functions.
........
2010-03-21 21:07:44 +00:00
Victor Stinner
38c36f8576
Merged revisions 78875 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78875 | victor.stinner | 2010-03-12 18:00:41 +0100 (ven., 12 mars 2010) | 5 lines
Issue #6697 : use %U format instead of _PyUnicode_AsString(), because
_PyUnicode_AsString() was not checked for error (NULL).
The unicode string is no more truncated to 200 or 400 *bytes*.
........
2010-03-21 21:05:53 +00:00
Victor Stinner
19495a7adc
Merged revisions 78868-78869 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78868 | victor.stinner | 2010-03-12 15:20:59 +0100 (ven., 12 mars 2010) | 25 lines
Merged revisions 78835-78837 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78835 | victor.stinner | 2010-03-11 13:34:39 +0100 (jeu., 11 mars 2010) | 7 lines
Issue #7774 : Set sys.executable to an empty string if argv[0] has been
set to an non existent program name and Python is unable to retrieve the real
program name.
Fix also sysconfig: if sys.executable is an empty string, use the current
working directory.
........
r78836 | victor.stinner | 2010-03-11 14:27:35 +0100 (jeu., 11 mars 2010) | 4 lines
Fix test_executable introduce in previous commit (r78835): Windows is able to
retrieve the absolute Python path even if argv[0] has been set to a non
existent program name.
........
r78837 | victor.stinner | 2010-03-11 14:46:06 +0100 (jeu., 11 mars 2010) | 3 lines
Another fix to test_executable() of test_sys: set the current working to avoid
the #7774 bug.
........
................
r78869 | victor.stinner | 2010-03-12 15:27:16 +0100 (ven., 12 mars 2010) | 2 lines
Oops, I loose the NEWS change in my previous backport (r78868) of r78835.
................
2010-03-21 20:41:54 +00:00
Victor Stinner
09e4697ad1
Merged revisions 78899 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78899 | victor.stinner | 2010-03-13 04:28:34 +0100 (sam., 13 mars 2010) | 14 lines
Merged revisions 78898 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78898 | victor.stinner | 2010-03-13 04:27:07 +0100 (sam., 13 mars 2010) | 7 lines
sqlite3: Fix a segfault on calling a connection with something else than a
string. Initialize all attributes to be able to call the statement destructor
on error.
Avoid also a duplicate connection in some tests: setUp() does already open a
connection (":memory:").
........
................
2010-03-21 20:29:20 +00:00
Victor Stinner
8a685f7184
Merged revisions 78894 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78894 | victor.stinner | 2010-03-13 01:57:22 +0100 (sam., 13 mars 2010) | 4 lines
sqlite3: Fix _PyUnicode_AsStringAndSize() error handler.
Destroy begin_statement (not statement) on error.
........
2010-03-21 20:05:51 +00:00
Antoine Pitrou
e1947beba0
Merged revisions 79221 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r79221 | antoine.pitrou | 2010-03-21 20:25:26 +0100 (dim., 21 mars 2010) | 11 lines
Merged revisions 79218 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79218 | antoine.pitrou | 2010-03-21 20:19:41 +0100 (dim., 21 mars 2010) | 5 lines
Issue #1628484 : The Makefile doesn't ignore the CFLAGS environment
variable anymore. It also forwards the LDFLAGS settings to the linker
when building a shared library.
........
................
2010-03-21 19:27:27 +00:00
Antoine Pitrou
5391211b54
Merged revisions 79161 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r79161 | antoine.pitrou | 2010-03-21 01:22:55 +0100 (dim., 21 mars 2010) | 9 lines
Merged revisions 79160 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79160 | antoine.pitrou | 2010-03-21 01:21:43 +0100 (dim., 21 mars 2010) | 3 lines
Fix overzealous .hgignore file
........
................
2010-03-21 19:10:15 +00:00
Ezio Melotti
8da105e6a9
Merged revisions 77888 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r77888 | georg.brandl | 2010-01-31 20:53:23 +0200 (Sun, 31 Jan 2010) | 1 line
Fix versionadded:: 2.x merges.
........
2010-03-21 07:31:49 +00:00
Benjamin Peterson
ed244d37c5
tag Python 3.1.2
2010-03-20 20:49:45 +00:00
Benjamin Peterson
f0fa1b2f67
version becomes 3.1.2
2010-03-20 20:47:27 +00:00
Florent Xicluna
f38b2b4ab1
Merged revisions 79144 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r79144 | florent.xicluna | 2010-03-20 21:30:53 +0100 (sam, 20 mar 2010) | 2 lines
#8133 : Use appropriate Unicode decomposition on MacOS X platform.
........
2010-03-20 20:38:20 +00:00
Tarek Ziadé
7c4afcb1c4
Fixed #2698 - now reads the compiler option when creating the compiler
2010-03-19 21:56:34 +00:00
Benjamin Peterson
f7239567ea
Merged revisions 79119 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r79119 | benjamin.peterson | 2010-03-19 16:42:45 -0500 (Fri, 19 Mar 2010) | 1 line
update mac installer script from the trunk #8068
........
2010-03-19 21:48:54 +00:00
Benjamin Peterson
5a0a85e838
port r78813 from trunk fixing #8089
2010-03-19 21:38:46 +00:00
Benjamin Peterson
081a38d678
Merged revisions 79075 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r79075 | benjamin.peterson | 2010-03-18 17:58:19 -0500 (Thu, 18 Mar 2010) | 9 lines
Merged revisions 79073 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79073 | benjamin.peterson | 2010-03-18 17:55:46 -0500 (Thu, 18 Mar 2010) | 1 line
reignore bad_coding
........
................
2010-03-18 23:01:29 +00:00
Benjamin Peterson
5ff5336842
Merged revisions 79057 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r79057 | benjamin.peterson | 2010-03-18 16:36:06 -0500 (Thu, 18 Mar 2010) | 9 lines
Merged revisions 79056 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79056 | benjamin.peterson | 2010-03-18 16:32:38 -0500 (Thu, 18 Mar 2010) | 1 line
install tkinter and ttk tests
........
................
2010-03-18 21:38:55 +00:00
Benjamin Peterson
c8f5540062
revert part of r77938 which broke hashlib constructors #8167
2010-03-18 21:27:29 +00:00
Benjamin Peterson
903fc51649
Merged revisions 79052 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r79052 | benjamin.peterson | 2010-03-18 16:23:05 -0500 (Thu, 18 Mar 2010) | 9 lines
Merged revisions 79051 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79051 | benjamin.peterson | 2010-03-18 16:20:35 -0500 (Thu, 18 Mar 2010) | 1 line
don't try to compile anything in lib2to3/tests/data #8169
........
................
2010-03-18 21:25:12 +00:00
Matthias Klose
e1609b7793
Merged revisions 78989 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78989 | matthias.klose | 2010-03-16 11:51:28 +0100 (Tue, 16 Mar 2010) | 10 lines
Merged revisions 78988 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78988 | matthias.klose | 2010-03-16 11:48:52 +0100 (Tue, 16 Mar 2010) | 3 lines
- Issue #4961 : Inconsistent/wrong result of askyesno function in tkMessageBox
with Tcl/Tk-8.5.
........
................
2010-03-16 10:53:02 +00:00
Matthias Klose
ffb5384ab1
Merged revisions 78980 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78980 | matthias.klose | 2010-03-15 14:46:04 +0100 (Mo, 15 Mär 2010) | 10 lines
Merged revisions 78979 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78979 | matthias.klose | 2010-03-15 14:42:23 +0100 (Mo, 15 Mär 2010) | 3 lines
- Issue #7356 : ctypes.util: Make parsing of ldconfig output independent of
the locale.
........
................
2010-03-15 13:51:00 +00:00
Ezio Melotti
8209fcc3a9
Merged revisions 78950 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78950 | ezio.melotti | 2010-03-14 11:51:37 +0200 (Sun, 14 Mar 2010) | 1 line
#7057 : fix several errors.
........
2010-03-14 09:53:34 +00:00
Georg Brandl
8c8430e2af
Merged revisions 78924 via svnmerge from
...
svn+ssh://svn.python.org/python/branches/py3k
................
r78924 | georg.brandl | 2010-03-13 14:42:16 +0100 (Sa, 13 Mär 2010) | 9 lines
Merged revisions 78921 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78921 | georg.brandl | 2010-03-13 14:39:46 +0100 (Sa, 13 Mär 2010) | 1 line
Change/fix handling of docs download location: for daily builds, put them right next to the HTML.
........
................
2010-03-13 13:43:01 +00:00
Georg Brandl
e869313e85
Merged revisions 78915 via svnmerge from
...
svn+ssh://svn.python.org/python/branches/py3k
................
r78915 | georg.brandl | 2010-03-13 12:02:07 +0100 (Sa, 13 Mär 2010) | 9 lines
Merged revisions 78908 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78908 | georg.brandl | 2010-03-13 11:12:39 +0100 (Sa, 13 Mär 2010) | 1 line
Add Makefile targets for automatic doc build. Add script that will be used for daily build.
........
................
2010-03-13 11:03:05 +00:00
Georg Brandl
0c812842e7
Merged revisions 78911 via svnmerge from
...
svn+ssh://svn.python.org/python/branches/py3k
................
r78911 | georg.brandl | 2010-03-13 11:56:09 +0100 (Sa, 13 Mär 2010) | 9 lines
Merged revisions 78910 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78910 | georg.brandl | 2010-03-13 11:54:12 +0100 (Sa, 13 Mär 2010) | 1 line
Bump externals versions for doc build.
........
................
2010-03-13 10:57:09 +00:00
Georg Brandl
da746d7a0e
Merged revisions 77173 via svnmerge from
...
svn+ssh://svn.python.org/python/branches/py3k
................
r77173 | benjamin.peterson | 2009-12-31 04:35:15 +0100 (Do, 31 Dez 2009) | 13 lines
Merged revisions 77151-77152 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77151 | georg.brandl | 2009-12-30 12:32:50 -0600 (Wed, 30 Dec 2009) | 1 line
#7487 : update Pygments version.
........
r77152 | georg.brandl | 2009-12-30 12:36:09 -0600 (Wed, 30 Dec 2009) | 1 line
#7602 : improve "clean" and "checkout" targets now that all tools are in externals.
........
................
2010-03-13 10:02:01 +00:00
Georg Brandl
87e62f0722
Blocked revisions 78804 via svnmerge
...
................
r78804 | r.david.murray | 2010-03-08 18:48:38 +0100 (Mo, 08 Mär 2010) | 13 lines
Merged revisions 78416,78430 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78416 | dirkjan.ochtman | 2010-02-23 23:12:11 -0500 (Tue, 23 Feb 2010) | 1 line
Issue #8004 : add a serve target to the Doc Makefile.
........
r78430 | dirkjan.ochtman | 2010-02-24 12:06:31 -0500 (Wed, 24 Feb 2010) | 1 line
Add some notes about Tools/scripts/serve.py.
........
................
2010-03-13 10:01:12 +00:00
Mark Dickinson
37b9c10603
Blocked revisions 78902 via svnmerge
...
........
r78902 | mark.dickinson | 2010-03-13 09:48:39 +0000 (Sat, 13 Mar 2010) | 2 lines
Issue #7845 : Make 1j.__le__(2j) return NotImplemented rather than raising TypeError.
........
2010-03-13 09:49:51 +00:00
Ezio Melotti
7b7320e3b7
Merged revisions 78896 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78896 | ezio.melotti | 2010-03-13 03:28:34 +0200 (Sat, 13 Mar 2010) | 9 lines
Merged revisions 78895 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78895 | ezio.melotti | 2010-03-13 03:21:34 +0200 (Sat, 13 Mar 2010) | 1 line
#8011 : use exc.tb_lineno instead of traceback.tb_lineno() and pep8ify variable names.
........
................
2010-03-13 01:30:13 +00:00
Ezio Melotti
9ebc18724b
Merged revisions 78891 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78891 | ezio.melotti | 2010-03-13 02:26:04 +0200 (Sat, 13 Mar 2010) | 9 lines
Merged revisions 78887 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78887 | ezio.melotti | 2010-03-13 02:15:36 +0200 (Sat, 13 Mar 2010) | 1 line
fix broken links
........
................
2010-03-13 00:27:48 +00:00
Victor Stinner
abcbe0a5f0
Blocked revisions 78888 via svnmerge
...
................
r78888 | victor.stinner | 2010-03-13 01:19:17 +0100 (sam., 13 mars 2010) | 9 lines
Merged revisions 78886 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78886 | victor.stinner | 2010-03-13 01:13:22 +0100 (sam., 13 mars 2010) | 2 lines
Issue #7818 : set().test_c_api() doesn't expect a set('abc'), modify the set.
........
................
2010-03-13 00:23:46 +00:00
Ezio Melotti
ede5d83f12
Merged revisions 78884 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78884 | ezio.melotti | 2010-03-13 00:45:38 +0200 (Sat, 13 Mar 2010) | 1 line
#8057 : fix strings -> byte strings
........
2010-03-12 22:48:16 +00:00
Georg Brandl
416d662f30
Merged revisions 78882 via svnmerge from
...
svn+ssh://svn.python.org/python/branches/py3k
................
r78882 | georg.brandl | 2010-03-12 22:29:28 +0100 (Fr, 12 Mär 2010) | 9 lines
Merged revisions 78880 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78880 | georg.brandl | 2010-03-12 22:27:23 +0100 (Fr, 12 Mär 2010) | 1 line
Deactivate automatic upload of the docs to python.org, they will now be built by a job on that machine.
........
................
2010-03-12 21:30:42 +00:00
Benjamin Peterson
2417634087
Merged revisions 78818 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78818 | benjamin.peterson | 2010-03-09 15:46:49 -0600 (Tue, 09 Mar 2010) | 9 lines
Merged revisions 78817 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78817 | benjamin.peterson | 2010-03-09 15:43:36 -0600 (Tue, 09 Mar 2010) | 1 line
handle an empty OPT variable correctly #8100
........
................
2010-03-10 22:28:52 +00:00
Ronald Oussoren
d4be7a24d4
Merged revisions 78808 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78808 | ronald.oussoren | 2010-03-09 07:40:19 +0100 (Tue, 09 Mar 2010) | 2 lines
Bugfix for the fix for issue 8067
........
2010-03-09 06:41:58 +00:00
Ronald Oussoren
095d2820bb
Merged revisions 78782 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78782 | ronald.oussoren | 2010-03-08 08:02:03 +0100 (Mon, 08 Mar 2010) | 2 lines
Fix for issue 8067
........
2010-03-08 07:03:14 +00:00
Benjamin Peterson
d01444d325
Merged revisions 78766 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78766 | benjamin.peterson | 2010-03-07 11:10:51 -0600 (Sun, 07 Mar 2010) | 1 line
prevent generator finalization from invalidating sys.exc_info() #7173
........
2010-03-07 17:14:15 +00:00
Senthil Kumaran
056c060589
Reverting the change made in r78434
2010-03-07 04:13:48 +00:00
Benjamin Peterson
83b32fddd6
start working towards 3.1.2 final
2010-03-06 22:45:53 +00:00
Benjamin Peterson
347bc22b9c
tagging 3.1.2 release candidate
2010-03-06 20:40:49 +00:00
Benjamin Peterson
c48b055258
Merged revisions 78739 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78739 | benjamin.peterson | 2010-03-06 14:34:24 -0600 (Sat, 06 Mar 2010) | 10 lines
Merged revisions 78718 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78718 | gregory.p.smith | 2010-03-06 01:35:19 -0600 (Sat, 06 Mar 2010) | 3 lines
Call setreuid and setregid in a subprocess to avoid altering the test runner's
process state. Should fix issue8045.
........
................
2010-03-06 20:37:32 +00:00
Benjamin Peterson
e4b56d2eee
bump to 3.1.2rc1
2010-03-06 20:28:33 +00:00
Ezio Melotti
dab886ab0f
Merged revisions 78729 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78729 | ezio.melotti | 2010-03-06 17:24:08 +0200 (Sat, 06 Mar 2010) | 1 line
#6509 : fix re.sub to work properly when the pattern, the string, and the replacement were all bytes. Patch by Antoine Pitrou.
........
2010-03-06 15:27:04 +00:00
Ezio Melotti
c0ddee54b0
Merged revisions 78689,78696-78697,78708,78711 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78689 | ezio.melotti | 2010-03-05 14:43:17 +0200 (Fri, 05 Mar 2010) | 1 line
This fixes a missing .lower() on the encoding name, a wrong byte undecodable by UTF-8, a wrong variable name, hopefully some windows buildbot on 3.x and adds a proper skip. It might break other things though.
........
r78696 | ezio.melotti | 2010-03-05 17:08:19 +0200 (Fri, 05 Mar 2010) | 1 line
r78689 enabled the test on more platforms but the buildbot did not like it. Using the filesystem encoding might work better. Also see #5604 .
........
r78697 | ezio.melotti | 2010-03-05 17:17:26 +0200 (Fri, 05 Mar 2010) | 1 line
sys.getdefaultencoding() can return None.
........
r78708 | ezio.melotti | 2010-03-06 03:20:49 +0200 (Sat, 06 Mar 2010) | 1 line
Cleanup and minor fixes.
........
r78711 | ezio.melotti | 2010-03-06 03:50:25 +0200 (Sat, 06 Mar 2010) | 1 line
The test was failing because the curdir was missing from sys.path. This should fix the problem.
........
2010-03-06 03:09:26 +00:00
Gerhard Häring
7857650833
Issue #7670 : sqlite3: Fixed crashes when operating on closed connections.
2010-03-05 15:55:55 +00:00
Mark Dickinson
9482032761
Merged revisions 78692 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78692 | mark.dickinson | 2010-03-05 14:44:08 +0000 (Fri, 05 Mar 2010) | 1 line
Remove unused imports & clean up sys imports in test_struct.
........
2010-03-05 14:45:49 +00:00
Benjamin Peterson
3e56dbe0ed
Merged revisions 78684 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78684 | benjamin.peterson | 2010-03-04 21:27:12 -0600 (Thu, 04 Mar 2010) | 20 lines
Merged revisions 78683 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r78683 | benjamin.peterson | 2010-03-04 21:24:17 -0600 (Thu, 04 Mar 2010) | 13 lines
Merged revisions 78679,78681 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r78679 | benjamin.peterson | 2010-03-04 21:10:46 -0600 (Thu, 04 Mar 2010) | 1 line
set svn:eol-style
........
r78681 | benjamin.peterson | 2010-03-04 21:19:06 -0600 (Thu, 04 Mar 2010) | 1 line
remove svn:executable property
........
................
................
2010-03-05 03:30:16 +00:00
Victor Stinner
26c966b91d
Merged revisions 78664 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78664 | victor.stinner | 2010-03-04 22:59:53 +0100 (jeu., 04 mars 2010) | 3 lines
Issue #3299 : replace PyObject_DEL() by Py_DECREF() in _sre module to fix a
crash in pydebug mode.
........
2010-03-04 22:01:47 +00:00
R. David Murray
9fc20536a4
Merged revisions 78657 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78657 | r.david.murray | 2010-03-04 12:38:18 -0500 (Thu, 04 Mar 2010) | 10 lines
Merged revisions 78656 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78656 | r.david.murray | 2010-03-04 12:34:05 -0500 (Thu, 04 Mar 2010) | 3 lines
Fix documentation of email.Message.get_filename to match
the fix applied in Issue 7082.
........
................
2010-03-04 17:43:40 +00:00
Victor Stinner
1dad6501ce
Merged revisions 78649 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78649 | victor.stinner | 2010-03-04 13:47:32 +0100 (jeu., 04 mars 2010) | 2 lines
oops, fix the test of my previous commit about unicodedata and PR #29 (r78647)
........
2010-03-04 12:48:27 +00:00