Antoine Pitrou
7c08744f52
Make error more explicit in test_finalize_with_trace
2010-09-19 23:28:30 +00:00
Antoine Pitrou
fedd481596
Try to make signal-sending tests in test_subprocess more robust on slow machines
2010-09-19 23:06:53 +00:00
Antoine Pitrou
fb8db8f635
Try to fix test_subprocess on "x86 debian parallel 3.x" buildbot
2010-09-19 22:46:05 +00:00
Brett Cannon
bc2eff3112
PyImport_Import was using the old import hack of sticking a dummy value into
...
fromlist to get __import__ to return the module desired. Now it uses the proper
approach of fetching the module from sys.modules.
Closes issue #9252 . Thanks to Alexander Belopolsky for the bug report.
2010-09-19 21:39:02 +00:00
Antoine Pitrou
e1f2f30328
Be more precise as to what operations are supported
2010-09-19 13:56:11 +00:00
Antoine Pitrou
dab642605b
Remove references to read() and write() methods, which are useless synonyms of
...
recv() and send()
2010-09-19 13:31:06 +00:00
Antoine Pitrou
792ff3e7be
Mention that SSL sockets provide the basic socket API.
2010-09-19 13:19:21 +00:00
Georg Brandl
035cedb4a3
Edit concurrent docs, add versionadded and see also reference to the PEP.
2010-09-19 09:31:09 +00:00
Hirokazu Yamamoto
ba45c2b6a7
Issue #9552 : Avoid unnecessary rebuild of OpenSSL. (Windows)
2010-09-19 09:24:20 +00:00
Georg Brandl
490014ba4d
Add "concurrent" subdir to Makefile.
2010-09-19 08:55:36 +00:00
Hirokazu Yamamoto
b059c3cd5f
Set svn:ignore to folders.
2010-09-19 08:31:01 +00:00
Benjamin Peterson
c713fc73cb
edit concurrent.future docs
2010-09-19 04:23:17 +00:00
Benjamin Peterson
3e38907081
set svn:eol-style on concurrent package files
2010-09-19 03:55:10 +00:00
Benjamin Peterson
1ea372f3c7
set svn:eol-style on tracedmodules
2010-09-19 03:54:31 +00:00
Senthil Kumaran
5cc9a052c1
Update the test_distutils mode test to test with umask value properly.
2010-09-19 03:09:54 +00:00
Florent Xicluna
eb19dce085
Issue #1686 : Fix string.Template when overriding the pattern attribute.
2010-09-18 23:34:07 +00:00
Antoine Pitrou
98b46702d2
Issue #9854 : SocketIO objects now observe the RawIOBase interface in
...
non-blocking mode: they return None when an operation would block (instead
of raising an exception).
2010-09-18 22:59:00 +00:00
Antoine Pitrou
8db3027e6a
Issue #9895 : speed up test_subprocess
2010-09-18 22:38:48 +00:00
Brian Quinlan
81c4d36928
Initial implementation of PEP 3148
2010-09-18 22:35:02 +00:00
Antoine Pitrou
679e0f2328
Issue #9894 : Do not hardcode ENOENT in test_subprocess.
...
(GNU/Hurd is not dead)
2010-09-18 17:56:02 +00:00
Hirokazu Yamamoto
f2dec8d6f1
In Python3000, Tkinter was renamed to tkinter. And print is now function.
2010-09-18 04:42:41 +00:00
Hirokazu Yamamoto
35aa08376b
Applied r84870 to older compilers.
2010-09-18 04:02:52 +00:00
Hirokazu Yamamoto
2cdacd7495
Added missing BaseTest.tearDown(self). Fixed refleak.
2010-09-18 03:54:32 +00:00
Senthil Kumaran
0c25b45bd8
Skip the distutils mode test on Windows OS.
2010-09-18 02:55:03 +00:00
Hirokazu Yamamoto
90387ff4b0
regrtest.py now runs python in build/test_python_xxx. (deeper than here)
...
So failed to load tcl/tk dll because $(dist)/tcltk/bin was set to PATH as
relative path. (Windows)
2010-09-18 00:31:44 +00:00
Amaury Forgeot d'Arc
6c9c09058f
Remove unused code in posixmodule.c
2010-09-17 23:39:42 +00:00
Vinay Sajip
bc85d848f5
Temporarily commented out test which succeeds locally but fails on buildbots, while investigating.
2010-09-17 23:35:29 +00:00
Victor Stinner
e797c16f84
Issue #767645 : Set os.path.supports_unicode_filenames to True in posixpath
...
Previous commit changed macpath but macpath is not used anymore as os.path
2010-09-17 23:34:26 +00:00
Amaury Forgeot d'Arc
d61d077bf5
#1730136 : Fix comparison between a tk Font object and an object of a different type.
2010-09-17 23:27:09 +00:00
Vinay Sajip
19ec67acf6
Issue #9441 : logging: Improved test coverage for rotating file handlers.
2010-09-17 18:57:36 +00:00
Senthil Kumaran
9b86a69fc7
Fix Issue2236: Distutils' mkpath implementation ignoring the "mode" parameter
2010-09-17 16:35:37 +00:00
Vinay Sajip
ac00799d61
Improved Filter documentation.
2010-09-17 12:45:26 +00:00
Vinay Sajip
c8c8c6968b
Improved basicConfig and custom level documentation.
2010-09-17 10:09:04 +00:00
Hirokazu Yamamoto
fc2e1d10bc
Let's see if tcl/tk test runs on windows buildbot with this fix.
2010-09-17 08:53:31 +00:00
Raymond Hettinger
8f5dbc83ea
Fix typo in example regular expression.
2010-09-17 06:26:45 +00:00
Raymond Hettinger
35c87f2b8e
Issue 9865: add __sizeof__ to OrderedDict.
2010-09-16 19:10:17 +00:00
Hirokazu Yamamoto
234f88dc73
Issue #9810 : Compile bzip2 source files in python's project file
...
directly. It used to be built with bzip2's makefile.
2010-09-16 17:50:57 +00:00
Antoine Pitrou
aee47561fc
Relax test condition (fix failures on FreeBSD buildbots)
2010-09-16 15:04:49 +00:00
Raymond Hettinger
37ade9cb61
Add tokenizer example to regex docs.
2010-09-16 12:02:17 +00:00
Raymond Hettinger
c1cc0d08d4
Remove unneeded exception chaining.
2010-09-16 08:06:05 +00:00
Raymond Hettinger
3255c63e28
Improve comment
2010-09-16 00:31:21 +00:00
Giampaolo Rodolà
86909b50b7
rename DISCONNECTED global constant in _DISCONNECTED
2010-09-15 21:59:04 +00:00
Giampaolo Rodolà
985b68e611
Store all errors signaling a disconnection into a global frozenset to save some computation time on recv() and send().
2010-09-15 21:43:47 +00:00
Antoine Pitrou
7d49bc9911
Move library changes to the right section
2010-09-15 15:13:17 +00:00
Antoine Pitrou
d305200755
Add entries to whatsnew
2010-09-15 15:09:40 +00:00
Matthias Klose
cf1dd711a4
Try harder on issue #7356 : ctypes.util: Make parsing of ldconfig output
...
independent of the locale. Set LC_ALL=C too.
2010-09-15 13:06:09 +00:00
Antoine Pitrou
8dd2387a60
Reverted unwanted change in r84826
2010-09-15 11:12:57 +00:00
Antoine Pitrou
11cb961b38
Add cross-references to the glossary entry for file objects.
2010-09-15 11:11:28 +00:00
Antoine Pitrou
6a11a98b7c
Update file-related information in the FAQ.
2010-09-15 10:08:31 +00:00
Antoine Pitrou
0b65b0fc83
Add a glossary entry for file objects.
2010-09-15 09:58:26 +00:00