- 09 Nis, 2012 17 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Stefan Krah yazdı
-
Stefan Krah yazdı
locality for regularly sized coefficients.
-
Stefan Krah yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
It used to live in its own SVN project.
-
R David Murray yazdı
I thought I had run the full test suite before the last checkin, but obviously I didn't. test_multibytecodec_support.py isn't really a test file, it is a support file that contains a base test class. Rename it to multibytecodec_support so that regrtest test discovery doesn't think it is a test file that should be run.
-
R David Murray yazdı
-
R David Murray yazdı
This moves us further in the direction of using normal unittest facilities instead of specialized regrtest ones. Any test module that can be correctly run currently using 'python unittest -m test.test_xxx' can now be converted to use normal unittest test loading by simply deleting its test_main, thus no longer requiring manual maintenance of the list of tests to run. (Not all tests can be converted that easily, since test_main sometimes does some additional things (such as reap_children or reap_threads). In those cases the extra code may be moved to setUpModule/tearDownModule methods, or perhaps the same ends can be achieved in a different way, such as moving the decorators to the test classes that need them, etc.) I don't advocate going through and making this change wholesale, but any time a list of tests in test_main would otherwise need to be updated, consideration should instead be given to deleting test_main.
-
R David Murray yazdı
Previously mailbox was copying a list of attributes from one message object to another in order to "copy the message data". This means that any time new attributes were added to email.message.Message, mailbox broke. Now instead it copies all attributes from the source object to the target object, skipping any mailbox-object-specific attributes to produce the same clean initial state it was previously getting by copying only the "known" attributes. David Lam assisted in the development of this patch.
-
R David Murray yazdı
-
- 08 Nis, 2012 11 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
This avoids crashing the server loop when a signal is received. Patch by Jerzy Kozera.
-
Antoine Pitrou yazdı
This avoids crashing the server loop when a signal is received. Patch by Jerzy Kozera.
-
R David Murray yazdı
-
R David Murray yazdı
-
Kristján Valur Jónsson yazdı
presence of a __del__ attribute on objects, rather it uses the tp_del slot.
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
- 07 Nis, 2012 10 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by sbt.
-
Kristján Valur Jónsson yazdı
types on some platforms.
-
Brett Cannon yazdı
is defined as an int while everyone else expects a long regardless of length.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Stefan Krah yazdı
-
Stefan Krah yazdı
2) Assert that the source operand is not special. Prevent resulting assert failure (harmless) by initializing flags before calling mpd_qshiftr_inplace. 3) Save a couple of instructions (mpd_zerocoeff already sets digits and len). Reorder initialization to match the order in the mpd_t struct.
-
Kristján Valur Jónsson yazdı
-
Ross Lagerwall yazdı
Found with Clang's Static Analyzer.
-
- 06 Nis, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-