Staging
v0.8.1

sort by:
Revision Author Date Message Commit Date
2c53971 add PyErr_SyntaxLocationEx, to support adding a column offset 20 September 2010, 22:42:10 UTC
26d64ae rewrite nocaret test to not rely on a specific SyntaxError 20 September 2010, 21:47:37 UTC
b0b384b Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other threads are still running. Instead, reinitialize the GIL on a second call to Py_Initialize(). 20 September 2010, 20:13:48 UTC
0646b4b test_get_makefile_filename() is not compatible with Windows. 20 September 2010, 19:12:07 UTC
ebbef6f Issue 9877: expose sysconfig.get_makefile_filename() in the public API. 20 September 2010, 15:29:53 UTC
18cc344 Revert previous commit. 20 September 2010, 10:46:56 UTC
83eadd1 logging: hasHandlers additions documented. 20 September 2010, 10:31:18 UTC
ae7d7fa Reverted changes which were inadvertently committed. 20 September 2010, 10:29:54 UTC
61c3f0d logging: added hasHandlers() to LoggerAdapter. 20 September 2010, 10:13:13 UTC
bb14d4b Windows7 buildbot debug trial. (Probably impossible) 20 September 2010, 09:59:55 UTC
b4a0809 logging: Add hasHandlers() method to Logger. 20 September 2010, 09:55:00 UTC
f1d633c Mention % as string formatting. 20 September 2010, 06:29:01 UTC
448f20b Fix typo. 20 September 2010, 06:27:02 UTC
2fea9b9 issue 9786 Native TLS support for pthreads PyThread_create_key now has a failure mode that the applicatino can detect. 20 September 2010, 02:11:49 UTC
3d8580f Try a more robust implementation of _kill_process 20 September 2010, 01:33:21 UTC
84e751a Try to fix buildbot failure (#9902) 20 September 2010, 00:12:19 UTC
7c08744 Make error more explicit in test_finalize_with_trace 19 September 2010, 23:28:30 UTC
fedd481 Try to make signal-sending tests in test_subprocess more robust on slow machines 19 September 2010, 23:06:53 UTC
fb8db8f Try to fix test_subprocess on "x86 debian parallel 3.x" buildbot 19 September 2010, 22:46:05 UTC
bc2eff3 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. 19 September 2010, 21:39:02 UTC
e1f2f30 Be more precise as to what operations are supported 19 September 2010, 13:56:11 UTC
dab6426 Remove references to read() and write() methods, which are useless synonyms of recv() and send() 19 September 2010, 13:31:06 UTC
792ff3e Mention that SSL sockets provide the basic socket API. 19 September 2010, 13:19:21 UTC
035cedb Edit concurrent docs, add versionadded and see also reference to the PEP. 19 September 2010, 09:31:09 UTC
ba45c2b Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows) 19 September 2010, 09:24:20 UTC
490014b Add "concurrent" subdir to Makefile. 19 September 2010, 08:55:36 UTC
b059c3c Set svn:ignore to folders. 19 September 2010, 08:31:01 UTC
c713fc7 edit concurrent.future docs 19 September 2010, 04:23:17 UTC
3e38907 set svn:eol-style on concurrent package files 19 September 2010, 03:55:10 UTC
1ea372f set svn:eol-style on tracedmodules 19 September 2010, 03:54:31 UTC
5cc9a05 Update the test_distutils mode test to test with umask value properly. 19 September 2010, 03:09:54 UTC
eb19dce Issue #1686: Fix string.Template when overriding the pattern attribute. 18 September 2010, 23:34:07 UTC
98b4670 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). 18 September 2010, 22:59:00 UTC
8db3027 Issue #9895: speed up test_subprocess 18 September 2010, 22:38:48 UTC
81c4d36 Initial implementation of PEP 3148 18 September 2010, 22:35:02 UTC
679e0f2 Issue #9894: Do not hardcode ENOENT in test_subprocess. (GNU/Hurd is not dead) 18 September 2010, 17:56:02 UTC
f2dec8d In Python3000, Tkinter was renamed to tkinter. And print is now function. 18 September 2010, 04:42:41 UTC
35aa083 Applied r84870 to older compilers. 18 September 2010, 04:02:52 UTC
2cdacd7 Added missing BaseTest.tearDown(self). Fixed refleak. 18 September 2010, 03:54:32 UTC
0c25b45 Skip the distutils mode test on Windows OS. 18 September 2010, 02:55:03 UTC
90387ff 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) 18 September 2010, 00:31:44 UTC
6c9c090 Remove unused code in posixmodule.c 17 September 2010, 23:39:42 UTC
bc85d84 Temporarily commented out test which succeeds locally but fails on buildbots, while investigating. 17 September 2010, 23:35:29 UTC
e797c16 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 17 September 2010, 23:34:26 UTC
d61d077 #1730136: Fix comparison between a tk Font object and an object of a different type. 17 September 2010, 23:27:09 UTC
19ec67a Issue #9441: logging: Improved test coverage for rotating file handlers. 17 September 2010, 18:57:36 UTC
9b86a69 Fix Issue2236: Distutils' mkpath implementation ignoring the "mode" parameter 17 September 2010, 16:35:37 UTC
ac00799 Improved Filter documentation. 17 September 2010, 12:45:26 UTC
c8c8c69 Improved basicConfig and custom level documentation. 17 September 2010, 10:09:04 UTC
fc2e1d1 Let's see if tcl/tk test runs on windows buildbot with this fix. 17 September 2010, 08:53:31 UTC
8f5dbc8 Fix typo in example regular expression. 17 September 2010, 06:26:45 UTC
35c87f2 Issue 9865: add __sizeof__ to OrderedDict. 16 September 2010, 19:10:17 UTC
234f88d Issue #9810: Compile bzip2 source files in python's project file directly. It used to be built with bzip2's makefile. 16 September 2010, 17:50:57 UTC
aee4756 Relax test condition (fix failures on FreeBSD buildbots) 16 September 2010, 15:04:49 UTC
37ade9c Add tokenizer example to regex docs. 16 September 2010, 12:02:17 UTC
c1cc0d0 Remove unneeded exception chaining. 16 September 2010, 08:06:05 UTC
3255c63 Improve comment 16 September 2010, 00:31:21 UTC
86909b5 rename DISCONNECTED global constant in _DISCONNECTED 15 September 2010, 21:59:04 UTC
985b68e Store all errors signaling a disconnection into a global frozenset to save some computation time on recv() and send(). 15 September 2010, 21:43:47 UTC
7d49bc9 Move library changes to the right section 15 September 2010, 15:13:17 UTC
d305200 Add entries to whatsnew 15 September 2010, 15:09:40 UTC
cf1dd71 Try harder on issue #7356: ctypes.util: Make parsing of ldconfig output independent of the locale. Set LC_ALL=C too. 15 September 2010, 13:06:09 UTC
8dd2387 Reverted unwanted change in r84826 15 September 2010, 11:12:57 UTC
11cb961 Add cross-references to the glossary entry for file objects. 15 September 2010, 11:11:28 UTC
6a11a98 Update file-related information in the FAQ. 15 September 2010, 10:08:31 UTC
0b65b0f Add a glossary entry for file objects. 15 September 2010, 09:58:26 UTC
5aa0d10 Improve docs for socket.makefile() and SocketIO 15 September 2010, 09:32:45 UTC
872b79d Add a comment explaining why SocketIO is needed 15 September 2010, 08:39:25 UTC
f77c1d6 Clarify where support for negative indices fall in the language hierarchy. 15 September 2010, 00:09:26 UTC
476a31e Issue 9802: Document min()/max() sort stability 14 September 2010, 23:13:42 UTC
1006bd4 Future proof total_ordering against changes in methods defined on object. 14 September 2010, 22:55:13 UTC
2e55fec Make testDefaults in test.test_socket.BasicSocketPairTest more reliable. 14 September 2010, 21:24:25 UTC
b82489d setup.py was trying to build _weakref which is redundant as it's a built-in module. Closes issue #9848. Thanks to Arfrever Frehtes Taifersar Arahesis for the bug report. 14 September 2010, 19:41:23 UTC
f7328d0 Improve iteration speed by only proxying back links. The forward links are hard references. The sentinel element is also a weakref proxy (to break a forward cylce wrapping around the sentinel). 14 September 2010, 19:40:15 UTC
328ec74 Issue #9854: The default read() implementation in io.RawIOBase now handles non-blocking readinto() returning None correctly. 14 September 2010, 18:37:24 UTC
9e0b864 Issue #1552: socket.socketpair() now returns regular socket.socket objects supporting the whole socket API (rather than the "raw" _socket.socket objects). 14 September 2010, 18:00:02 UTC
3861599 Remove pointers to a FAQ entry that no longer exists. Incorporate some text from the old FAQ into the docs 14 September 2010, 16:02:01 UTC
a468adc Issue #9853: Fix the signature of SSLSocket.recvfrom() and SSLSocket.sendto() to match the corresponding socket methods. 14 September 2010, 14:43:44 UTC
9bfc0f0 Issue 9315: Added test/tracedmodules to LIBSUBDIRS 14 September 2010, 14:12:19 UTC
3d330ad Remove C++-style comments 14 September 2010, 10:08:08 UTC
2ed94eb Do not print additional shutdown message when gc.DEBUG_SAVEALL is set 14 September 2010, 09:48:39 UTC
0055c42 Tidied example script. 14 September 2010, 09:42:39 UTC
8552d1f Added test for QueueHandler. 14 September 2010, 09:34:09 UTC
de72692 Tidied example script. 14 September 2010, 06:59:24 UTC
e1b6a9a Added files missed in r84780. Thanks, Florent. 14 September 2010, 01:11:35 UTC
98a5f3f Issue 9840: Add reprlib.recursive_repr(), a decorator for handling recursive calls to __repr__ methods. 13 September 2010, 21:36:00 UTC
9f0cbf1 Issue #9213: Add index and count methods to range objects, needed to meet the API of the collections.Sequence ABC. 13 September 2010, 21:16:29 UTC
e4d6317 Issue 7994: Make object.__format__() raise a PendingDeprecationWarning if the format string is not empty. Manually merge r79596 and r84772 from 2.x. Also, apparently test_format() from test_builtin never made it into 3.x. I've added it as well. It tests the basic format() infrastructure. 13 September 2010, 20:48:43 UTC
af9d10a logging: enhanced HTTPHandler 13 September 2010, 20:40:30 UTC
1b5646a Enhanced HTTPHandler documentation. 13 September 2010, 20:37:50 UTC
9907918 Removed unused, commented-out code. 13 September 2010, 20:28:57 UTC
63891ed Expanded QueueHandler documentation. 13 September 2010, 20:02:39 UTC
ccb706c Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X (macpath module). 13 September 2010, 19:41:36 UTC
d8642c3 Removed debugging setting 13 September 2010, 18:15:33 UTC
4d77017 Issue #9315: Fix for the trace module to record correct class name when tracing methods. Unit tests. Patch by Eli Bendersky. 13 September 2010, 18:14:34 UTC
dc69e72 Make test.regrtest.__file__ absolute, this was not always the case when running profile or trace, for example. (issue #9323) 13 September 2010, 16:35:02 UTC
1df1536 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly re-created on a subsequent call to Py_Initialize(). The problem (a crash) wouldn't appear in 3.1 or 2.7 where the GIL's structure is more trivial. 13 September 2010, 14:16:46 UTC
bea8ae7 get_build_version() is needed even where sys.platform != "win32". Try to fix buildbot error in other way. 13 September 2010, 07:18:30 UTC
4cc96a1 Cosmetic fix to project files. 13 September 2010, 06:21:54 UTC
6095435 Updated PC/VS8.0 with PCBuild/vs9to8.py. 13 September 2010, 05:59:38 UTC
back to top